mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-02-05 19:01:00 +08:00
* moving raptor bump compiles and raptor mode appears hovering with RAPTOR seems to work Using Raptor to execute offboard commands works (using multirobot f03825a5795a77c5a095f799eeb8e0b646fe7176 to feed the trajectory_setpoint). Requires more testing simplified rotmat runtime inference frequency multiple arming request response reflects actual readiness adjusting to fit IMU gyro ratemax relaxing control timing warning thresholds for SITL Using mode registration to signal if offboard commands should be forwarded to trajectory_setpoint instead of just hardcoding vehicle_status.nav_state == vehicle_status_s::NAVIGATION_STATE_OFFBOARD adopting new "request_offboard_setpoint" in raptor module replace offboard seems good mc_raptor: overwrite offboard parameter separate raptor config addendum Raptor off by default RAPTOR readme Loading raptor checkpoint from tar works. check if load was successful refactoring: cutting out the pure C interface to allow direct testing of the policy input/output behavior from the file, without fully loading it into memory first adapter not needed anymore ripping out test observation mode (not used in a long time) fixing warnings bump RLtools to fix the remaining warnings Loading RAPTOR checkpoint from sdcard seems to work on FMU-6C embedding Raptor policy into flash works again also printing checkpoint name when using the embedded policy cleaner handling of the checkpoint name back to reading from file ripping out visual odometry checks cleaner more debug but no success bump rlt bump pre next rebase we can publish the no angvel update because we latch onto it with the scheduled work item anyways this kind of runs on the 6c still bad SIH almost flying saving stale traj setpoint yaw new error. timestamp not the problem anymore bump rlt; SIH works with executor shaping up bumping blob (include tar checkpoint) cleaning up fixing formatting update readme * moving raptor bump compiles and raptor mode appears hovering with RAPTOR seems to work Using Raptor to execute offboard commands works (using multirobot f03825a5795a77c5a095f799eeb8e0b646fe7176 to feed the trajectory_setpoint). Requires more testing simplified rotmat runtime inference frequency multiple arming request response reflects actual readiness adjusting to fit IMU gyro ratemax relaxing control timing warning thresholds for SITL Using mode registration to signal if offboard commands should be forwarded to trajectory_setpoint instead of just hardcoding vehicle_status.nav_state == vehicle_status_s::NAVIGATION_STATE_OFFBOARD adopting new "request_offboard_setpoint" in raptor module replace offboard seems good mc_raptor: overwrite offboard parameter separate raptor config addendum Raptor off by default RAPTOR readme Loading raptor checkpoint from tar works. check if load was successful refactoring: cutting out the pure C interface to allow direct testing of the policy input/output behavior from the file, without fully loading it into memory first adapter not needed anymore ripping out test observation mode (not used in a long time) fixing warnings bump RLtools to fix the remaining warnings Loading RAPTOR checkpoint from sdcard seems to work on FMU-6C embedding Raptor policy into flash works again also printing checkpoint name when using the embedded policy cleaner handling of the checkpoint name back to reading from file ripping out visual odometry checks cleaner more debug but no success bump rlt bump pre next rebase we can publish the no angvel update because we latch onto it with the scheduled work item anyways this kind of runs on the 6c still bad SIH almost flying saving stale traj setpoint yaw new error. timestamp not the problem anymore bump rlt; SIH works with executor shaping up bumping blob (include tar checkpoint) cleaning up fixing formatting update readme updating gitignore * fixing format and declaring submodules as cmake dependencies * adding uORB message documentation * fixing comment alignment * Adding option to restrict mc_raptor to not listen to the trajectory_setpoint (use the position and yaw at activation time as reference instead) * bump RLtools; relax timing thresholds and adding real world readme * smooth traj tracking performance * Measuring trajectory_setpoint timing (providing stats in raptor_status); reverting accidental .gitignore modification * More ideomatic way of setting the path to the policy checkpoint * Reset trajectory_setpoint on raptor mode activation * Adding internal trajectory generation (feeding trajectory_setpoint over Mavlink is too noisy). Quite agile trajectory tracking, good performance * stable flight * Update msg/versioned/RaptorInput.msg Co-authored-by: Hamish Willee <hamishwillee@gmail.com> * adopting message formatting conventions * sort raptor.px4board * Archiving RegisterExtComponentRequestV1.msg * Add message versioning for VehicleStatus v2 and RegisterExtComponentRequest v2 * fixing formatting * making internal reference configurable via command * RAPTOR docs wip * raptor internal reference documentation * Finishing RAPTOR docs first draft * adding logging instructions * Fixing missing command documentation test error * fixing format * adding motor layout warning * raptor minimal subedit - prettier, images etc * Improve intro * Fix up Neural_Networks version * Mentioning "Adaptive" in the RAPTOR documentation's title * Adding clarifications about the internal reference trajectory generator * Removing "foundation policy" wording * Fixing new-line check * Removing redundant (evident through directory hierarchy) raptor_ from filenames * Unifying Neural Network docs (mc_nn_control and mc_raptor) under the "Neural Network" topic * Fix to standard structure * Making the distinction between mc_nn_control and mc_raptor more clear and fixing the comparison table * Removing trajectory_setpoint forwarding flag from external mode registration request and from the vehicle status * Trivial layout and wording fixes * fixing docs error --------- Co-authored-by: Hamish Willee <hamishwillee@gmail.com>
579 lines
18 KiB
CMake
579 lines
18 KiB
CMake
############################################################################
|
|
#
|
|
# Copyright (c) 2016-2022 PX4 Development Team. All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in
|
|
# the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# 3. Neither the name PX4 nor the names of its contributors may be
|
|
# used to endorse or promote products derived from this software
|
|
# without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
############################################################################
|
|
|
|
# Support IN_LIST if() operator
|
|
cmake_policy(SET CMP0057 NEW)
|
|
|
|
include(px4_list_make_absolute)
|
|
|
|
set(msg_files
|
|
ActionRequest.msg
|
|
ActuatorArmed.msg
|
|
ActuatorControlsStatus.msg
|
|
ActuatorOutputs.msg
|
|
ActuatorServosTrim.msg
|
|
ActuatorTest.msg
|
|
AdcReport.msg
|
|
Airspeed.msg
|
|
AirspeedWind.msg
|
|
AutotuneAttitudeControlStatus.msg
|
|
BatteryInfo.msg
|
|
ButtonEvent.msg
|
|
CameraCapture.msg
|
|
CameraStatus.msg
|
|
CameraTrigger.msg
|
|
CanInterfaceStatus.msg
|
|
CellularStatus.msg
|
|
CollisionConstraints.msg
|
|
ControlAllocatorStatus.msg
|
|
Cpuload.msg
|
|
DatamanRequest.msg
|
|
DatamanResponse.msg
|
|
DebugArray.msg
|
|
DebugKeyValue.msg
|
|
DebugValue.msg
|
|
DebugVect.msg
|
|
DeviceInformation.msg
|
|
DifferentialPressure.msg
|
|
DistanceSensor.msg
|
|
DistanceSensorModeChangeRequest.msg
|
|
DronecanNodeStatus.msg
|
|
Ekf2Timestamps.msg
|
|
EscReport.msg
|
|
EscStatus.msg
|
|
EstimatorAidSource1d.msg
|
|
EstimatorAidSource2d.msg
|
|
EstimatorAidSource3d.msg
|
|
EstimatorBias.msg
|
|
EstimatorBias3d.msg
|
|
EstimatorEventFlags.msg
|
|
EstimatorGpsStatus.msg
|
|
EstimatorInnovations.msg
|
|
EstimatorSelectorStatus.msg
|
|
EstimatorSensorBias.msg
|
|
EstimatorStates.msg
|
|
EstimatorStatus.msg
|
|
EstimatorStatusFlags.msg
|
|
versioned/Event.msg
|
|
FigureEightStatus.msg
|
|
FailsafeFlags.msg
|
|
FailureDetectorStatus.msg
|
|
FlightPhaseEstimation.msg
|
|
FollowTarget.msg
|
|
FollowTargetEstimator.msg
|
|
FollowTargetStatus.msg
|
|
FuelTankStatus.msg
|
|
FixedWingLateralGuidanceStatus.msg
|
|
FixedWingLateralStatus.msg
|
|
FixedWingRunwayControl.msg
|
|
GeneratorStatus.msg
|
|
GeofenceResult.msg
|
|
GeofenceStatus.msg
|
|
GainCompression.msg
|
|
GimbalControls.msg
|
|
GimbalDeviceAttitudeStatus.msg
|
|
GimbalDeviceInformation.msg
|
|
GimbalDeviceSetAttitude.msg
|
|
GimbalManagerInformation.msg
|
|
GimbalManagerSetAttitude.msg
|
|
GimbalManagerSetManualControl.msg
|
|
GimbalManagerStatus.msg
|
|
GpioConfig.msg
|
|
GpioIn.msg
|
|
GpioOut.msg
|
|
GpioRequest.msg
|
|
GpsDump.msg
|
|
GpsInjectData.msg
|
|
Gripper.msg
|
|
HealthReport.msg
|
|
HeaterStatus.msg
|
|
HoverThrustEstimate.msg
|
|
InputRc.msg
|
|
InternalCombustionEngineControl.msg
|
|
InternalCombustionEngineStatus.msg
|
|
IridiumsbdStatus.msg
|
|
IrlockReport.msg
|
|
LandingGear.msg
|
|
LandingGearWheel.msg
|
|
LandingTargetInnovations.msg
|
|
LandingTargetPose.msg
|
|
LaunchDetectionStatus.msg
|
|
LedControl.msg
|
|
LoggerStatus.msg
|
|
LogMessage.msg
|
|
MagnetometerBiasEstimate.msg
|
|
MagWorkerData.msg
|
|
ManualControlSwitches.msg
|
|
MavlinkLog.msg
|
|
MavlinkTunnel.msg
|
|
MessageFormatRequest.msg
|
|
MessageFormatResponse.msg
|
|
Mission.msg
|
|
MissionResult.msg
|
|
MountOrientation.msg
|
|
NavigatorMissionItem.msg
|
|
NavigatorStatus.msg
|
|
NeuralControl.msg
|
|
NormalizedUnsignedSetpoint.msg
|
|
ObstacleDistance.msg
|
|
OffboardControlMode.msg
|
|
OnboardComputerStatus.msg
|
|
OpenDroneIdArmStatus.msg
|
|
OpenDroneIdOperatorId.msg
|
|
OpenDroneIdSelfId.msg
|
|
OpenDroneIdSystem.msg
|
|
OrbitStatus.msg
|
|
OrbTest.msg
|
|
OrbTestLarge.msg
|
|
OrbTestMedium.msg
|
|
ParameterResetRequest.msg
|
|
ParameterSetUsedRequest.msg
|
|
ParameterSetValueRequest.msg
|
|
ParameterSetValueResponse.msg
|
|
ParameterUpdate.msg
|
|
Ping.msg
|
|
PositionControllerLandingStatus.msg
|
|
PositionControllerStatus.msg
|
|
PositionSetpoint.msg
|
|
PositionSetpointTriplet.msg
|
|
PowerButtonState.msg
|
|
PowerMonitor.msg
|
|
PpsCapture.msg
|
|
PurePursuitStatus.msg
|
|
PwmInput.msg
|
|
Px4ioStatus.msg
|
|
QshellReq.msg
|
|
QshellRetval.msg
|
|
RadioStatus.msg
|
|
RateCtrlStatus.msg
|
|
RcChannels.msg
|
|
RcParameterMap.msg
|
|
RoverAttitudeSetpoint.msg
|
|
RoverAttitudeStatus.msg
|
|
RoverPositionSetpoint.msg
|
|
RoverRateSetpoint.msg
|
|
RoverRateStatus.msg
|
|
RoverSpeedSetpoint.msg
|
|
RoverSpeedStatus.msg
|
|
RoverSteeringSetpoint.msg
|
|
RoverThrottleSetpoint.msg
|
|
Rpm.msg
|
|
RtlStatus.msg
|
|
RtlTimeEstimate.msg
|
|
SatelliteInfo.msg
|
|
SensorAccel.msg
|
|
SensorAccelFifo.msg
|
|
SensorBaro.msg
|
|
SensorCombined.msg
|
|
SensorCorrection.msg
|
|
SensorGnssRelative.msg
|
|
SensorGnssStatus.msg
|
|
SensorGps.msg
|
|
SensorGyro.msg
|
|
SensorGyroFft.msg
|
|
SensorGyroFifo.msg
|
|
SensorHygrometer.msg
|
|
SensorMag.msg
|
|
SensorOpticalFlow.msg
|
|
SensorPreflightMag.msg
|
|
SensorSelection.msg
|
|
SensorsStatus.msg
|
|
SensorsStatusImu.msg
|
|
SensorTemp.msg
|
|
SensorUwb.msg
|
|
SensorAirflow.msg
|
|
SystemPower.msg
|
|
TakeoffStatus.msg
|
|
TaskStackInfo.msg
|
|
TecsStatus.msg
|
|
TelemetryStatus.msg
|
|
TiltrotorExtraControls.msg
|
|
TimesyncStatus.msg
|
|
TrajectorySetpoint6dof.msg
|
|
TransponderReport.msg
|
|
TuneControl.msg
|
|
UavcanParameterRequest.msg
|
|
UavcanParameterValue.msg
|
|
UlogStream.msg
|
|
UlogStreamAck.msg
|
|
VehicleAcceleration.msg
|
|
VehicleAirData.msg
|
|
VehicleAngularAccelerationSetpoint.msg
|
|
VehicleConstraints.msg
|
|
VehicleImu.msg
|
|
VehicleImuStatus.msg
|
|
VehicleLocalPositionSetpoint.msg
|
|
VehicleMagnetometer.msg
|
|
VehicleOpticalFlow.msg
|
|
VehicleOpticalFlowVel.msg
|
|
VehicleRoi.msg
|
|
VehicleThrustSetpoint.msg
|
|
VehicleTorqueSetpoint.msg
|
|
VelocityLimits.msg
|
|
WheelEncoders.msg
|
|
YawEstimatorStatus.msg
|
|
versioned/ActuatorMotors.msg
|
|
versioned/ActuatorServos.msg
|
|
versioned/AirspeedValidated.msg
|
|
versioned/ArmingCheckReply.msg
|
|
versioned/ArmingCheckRequest.msg
|
|
versioned/BatteryStatus.msg
|
|
versioned/ConfigOverrides.msg
|
|
versioned/FixedWingLateralSetpoint.msg
|
|
versioned/FixedWingLongitudinalSetpoint.msg
|
|
versioned/GotoSetpoint.msg
|
|
versioned/HomePosition.msg
|
|
versioned/LateralControlConfiguration.msg
|
|
versioned/LongitudinalControlConfiguration.msg
|
|
versioned/ManualControlSetpoint.msg
|
|
versioned/ModeCompleted.msg
|
|
versioned/RaptorInput.msg
|
|
versioned/RaptorStatus.msg
|
|
versioned/RegisterExtComponentReply.msg
|
|
versioned/RegisterExtComponentRequest.msg
|
|
versioned/TrajectorySetpoint.msg
|
|
versioned/UnregisterExtComponent.msg
|
|
versioned/VehicleAngularVelocity.msg
|
|
versioned/VehicleAttitude.msg
|
|
versioned/VehicleAttitudeSetpoint.msg
|
|
versioned/VehicleCommandAck.msg
|
|
versioned/VehicleCommand.msg
|
|
versioned/VehicleControlMode.msg
|
|
versioned/VehicleGlobalPosition.msg
|
|
versioned/VehicleLandDetected.msg
|
|
versioned/VehicleLocalPosition.msg
|
|
versioned/VehicleOdometry.msg
|
|
versioned/VehicleRatesSetpoint.msg
|
|
versioned/VehicleStatus.msg
|
|
versioned/VtolVehicleStatus.msg
|
|
versioned/Wind.msg
|
|
)
|
|
list(SORT msg_files)
|
|
|
|
px4_list_make_absolute(msg_files ${CMAKE_CURRENT_SOURCE_DIR} ${msg_files})
|
|
|
|
if(NOT EXTERNAL_MODULES_LOCATION STREQUAL "")
|
|
# Check that the msg directory and the CMakeLists.txt file exists
|
|
if(EXISTS ${EXTERNAL_MODULES_LOCATION}/msg/CMakeLists.txt)
|
|
add_subdirectory(${EXTERNAL_MODULES_LOCATION}/msg external_msg)
|
|
|
|
# Add each of the external message files to the global msg_files list
|
|
foreach(external_msg_file ${config_msg_list_external})
|
|
list(APPEND msg_files ${EXTERNAL_MODULES_LOCATION}/msg/${external_msg_file})
|
|
endforeach()
|
|
endif()
|
|
endif()
|
|
|
|
# headers
|
|
set(msg_out_path ${PX4_BINARY_DIR}/uORB/topics)
|
|
set(ucdr_out_path ${PX4_BINARY_DIR}/uORB/ucdr)
|
|
set(msg_source_out_path ${CMAKE_CURRENT_BINARY_DIR}/topics_sources)
|
|
|
|
set(uorb_headers)
|
|
set(uorb_sources)
|
|
set(uorb_ucdr_headers)
|
|
set(uorb_json_files)
|
|
foreach(msg_file ${msg_files})
|
|
get_filename_component(msg ${msg_file} NAME_WE)
|
|
|
|
# Pascal case to snake case (MsgFile -> msg_file)
|
|
string(REGEX REPLACE "(.)([A-Z][a-z]+)" "\\1_\\2" msg "${msg}")
|
|
string(REGEX REPLACE "([a-z0-9])([A-Z])" "\\1_\\2" msg "${msg}")
|
|
string(TOLOWER "${msg}" msg)
|
|
|
|
list(APPEND uorb_headers ${msg_out_path}/${msg}.h)
|
|
list(APPEND uorb_sources ${msg_source_out_path}/${msg}.cpp)
|
|
list(APPEND uorb_ucdr_headers ${ucdr_out_path}/${msg}.h)
|
|
list(APPEND uorb_json_files ${msg_source_out_path}/${msg}.json)
|
|
endforeach()
|
|
|
|
# set parent scope msg_files for ROS
|
|
set(msg_files ${msg_files} PARENT_SCOPE)
|
|
|
|
# Generate uORB headers
|
|
add_custom_command(
|
|
OUTPUT
|
|
${uorb_headers}
|
|
${msg_out_path}/uORBTopics.hpp
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
--headers
|
|
-f ${msg_files}
|
|
-i ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/versioned
|
|
-o ${msg_out_path}
|
|
-e ${PX4_SOURCE_DIR}/Tools/msg/templates/uorb
|
|
DEPENDS
|
|
${msg_files}
|
|
${PX4_SOURCE_DIR}/Tools/msg/templates/uorb/msg.h.em
|
|
${PX4_SOURCE_DIR}/Tools/msg/templates/uorb/uORBTopics.hpp.em
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_helper.py
|
|
COMMENT "Generating uORB topic headers"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
add_custom_target(uorb_headers DEPENDS ${uorb_headers})
|
|
|
|
add_custom_command(
|
|
OUTPUT
|
|
${uorb_json_files}
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
--json
|
|
-f ${msg_files}
|
|
-i ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/versioned
|
|
-o ${msg_source_out_path}
|
|
-e ${PX4_SOURCE_DIR}/Tools/msg/templates/uorb
|
|
DEPENDS
|
|
${msg_files}
|
|
${PX4_SOURCE_DIR}/Tools/msg/templates/uorb/msg.json.em
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_helper.py
|
|
COMMENT "Generating uORB json files"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
add_custom_target(uorb_json_files DEPENDS ${uorb_json_files})
|
|
|
|
set(uorb_message_fields_cpp_file ${msg_source_out_path}/uORBMessageFieldsGenerated.cpp)
|
|
set(uorb_message_fields_header_file ${msg_out_path}/uORBMessageFieldsGenerated.hpp)
|
|
add_custom_command(
|
|
OUTPUT
|
|
${uorb_message_fields_cpp_file}
|
|
${uorb_message_fields_header_file}
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_compressed_fields.py
|
|
-f ${uorb_json_files}
|
|
--source-output-file ${uorb_message_fields_cpp_file}
|
|
--header-output-file ${uorb_message_fields_header_file}
|
|
DEPENDS
|
|
${uorb_json_files}
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_compressed_fields.py
|
|
COMMENT "Generating uORB compressed fields"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
|
|
# Generate microcdr headers
|
|
add_custom_command(
|
|
OUTPUT ${uorb_ucdr_headers}
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
--headers
|
|
-f ${msg_files}
|
|
-i ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/versioned
|
|
-o ${ucdr_out_path}
|
|
-e ${PX4_SOURCE_DIR}/Tools/msg/templates/ucdr
|
|
DEPENDS
|
|
${msg_files}
|
|
${PX4_SOURCE_DIR}/Tools/msg/templates/ucdr/msg.h.em
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_helper.py
|
|
COMMENT "Generating uORB topic ucdr headers"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
add_custom_target(uorb_ucdr_headers DEPENDS ${uorb_ucdr_headers})
|
|
|
|
# Generate uORB sources
|
|
add_custom_command(
|
|
OUTPUT
|
|
${uorb_sources}
|
|
${msg_source_out_path}/uORBTopics.cpp
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
--sources
|
|
-f ${msg_files}
|
|
-i ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/versioned
|
|
-o ${msg_source_out_path}
|
|
-e ${PX4_SOURCE_DIR}/Tools/msg/templates/uorb
|
|
DEPENDS
|
|
${msg_files}
|
|
${PX4_SOURCE_DIR}/Tools/msg/templates/uorb/msg.cpp.em
|
|
${PX4_SOURCE_DIR}/Tools/msg/templates/uorb/uORBTopics.cpp.em
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_helper.py
|
|
COMMENT "Generating uORB topic sources"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
|
|
add_library(uorb_msgs ${uorb_headers} ${msg_out_path}/uORBTopics.hpp ${uorb_sources} ${msg_source_out_path}/uORBTopics.cpp ${uorb_message_fields_cpp_file})
|
|
target_link_libraries(uorb_msgs PRIVATE m)
|
|
add_dependencies(uorb_msgs prebuild_targets uorb_headers)
|
|
|
|
if(CONFIG_LIB_CDRSTREAM)
|
|
set(uorb_cdr_idl)
|
|
set(uorb_cdr_msg)
|
|
set(uorb_cdr_hash)
|
|
set(uorb_cdr_idl_uorb)
|
|
set(idl_include_path ${PX4_BINARY_DIR}/uORB/idl)
|
|
set(idl_out_path ${idl_include_path}/px4/msg)
|
|
set(idl_rihs01_out_path ${idl_include_path}/px4)
|
|
set(idl_uorb_path ${PX4_BINARY_DIR}/msg/px4/msg)
|
|
|
|
# Make sure that CycloneDDS has been checkout out
|
|
execute_process(COMMAND git submodule sync src/lib/cdrstream/cyclonedds
|
|
WORKING_DIRECTORY ${PX4_SOURCE_DIR} )
|
|
execute_process(COMMAND git submodule update --init --force src/lib/cdrstream/cyclonedds
|
|
WORKING_DIRECTORY ${PX4_SOURCE_DIR} )
|
|
|
|
# CycloneDDS-tools doesn't ship with the cdrstream-desc feature thus we've to compile idlc from source
|
|
MESSAGE(STATUS "Configuring idlc :" ${CMAKE_CURRENT_BINARY_DIR}/idlc)
|
|
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/idlc)
|
|
execute_process(COMMAND ${CMAKE_COMMAND} ${PX4_SOURCE_DIR}/src/lib/cdrstream/cyclonedds
|
|
-DCMAKE_C_COMPILER=/usr/bin/gcc
|
|
-DBUILD_EXAMPLES=OFF
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/idlc
|
|
RESULT_VARIABLE CMD_ERROR
|
|
OUTPUT_FILE CMD_OUTPUT )
|
|
MESSAGE(STATUS "Building idlc :" ${CMAKE_CURRENT_BINARY_DIR}/idlc)
|
|
execute_process(COMMAND ${CMAKE_COMMAND} --build . --target idlc
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/idlc
|
|
RESULT_VARIABLE CMD_ERROR
|
|
OUTPUT_FILE CMD_OUTPUT )
|
|
list(APPEND CMAKE_PROGRAM_PATH "${CMAKE_CURRENT_BINARY_DIR}/idlc/bin")
|
|
|
|
# Copy .msg files
|
|
foreach(msg_file ${msg_files})
|
|
get_filename_component(msg ${msg_file} NAME_WE)
|
|
configure_file(${msg_file} ${idl_out_path}/${msg}.msg COPYONLY)
|
|
list(APPEND uorb_cdr_idl ${idl_out_path}/${msg}.idl)
|
|
list(APPEND uorb_cdr_msg ${idl_out_path}/${msg}.msg)
|
|
list(APPEND uorb_cdr_hash ${idl_out_path}/${msg}.json)
|
|
list(APPEND uorb_cdr_idl_uorb ${idl_uorb_path}/${msg}.h)
|
|
endforeach()
|
|
|
|
# Generate IDL from .msg using rosidl_adapter
|
|
# Note this a submodule inside PX4 hence no ROS2 installation required
|
|
add_custom_command(
|
|
OUTPUT ${uorb_cdr_idl}
|
|
COMMAND ${CMAKE_COMMAND}
|
|
-E env "PYTHONPATH=${PX4_SOURCE_DIR}/src/lib/cdrstream/rosidl/rosidl_adapter:${PX4_SOURCE_DIR}/src/lib/cdrstream/rosidl/rosidl_cli"
|
|
${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/src/lib/cdrstream/msg2idl.py
|
|
${uorb_cdr_msg}
|
|
DEPENDS
|
|
${uorb_cdr_msg}
|
|
git_cyclonedds
|
|
COMMENT "Generating IDL from uORB topic headers"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
|
|
file(CREATE_LINK ${idl_rihs01_out_path} ${idl_include_path}/px4_msgs SYMBOLIC)
|
|
|
|
# Generate IDL from .msg using rosidl_adapter
|
|
# Note this is a submodule inside PX4 hence no ROS2 installation required
|
|
add_custom_command(
|
|
OUTPUT ${uorb_cdr_hash}
|
|
COMMAND ${CMAKE_COMMAND}
|
|
-E env "PYTHONPATH=${PX4_SOURCE_DIR}/src/lib/cdrstream/rosidl/rosidl_adapter:${PX4_SOURCE_DIR}/src/lib/cdrstream/rosidl/rosidl_cli:${PX4_SOURCE_DIR}/src/lib/cdrstream/rosidl/rosidl_parser:${PX4_SOURCE_DIR}/src/lib/cdrstream/rosidl/rosidl_generator_type_description"
|
|
${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/src/lib/cdrstream/idl2rihs01.py
|
|
--output-dir ${idl_rihs01_out_path}
|
|
${uorb_cdr_idl}
|
|
DEPENDS
|
|
${uorb_cdr_idl}
|
|
git_cyclonedds
|
|
COMMENT "Generating RIHS01 hashes from IDL"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
|
|
# Generate C definitions from IDL
|
|
set(CYCLONEDDS_DIR ${PX4_SOURCE_DIR}/src/lib/cdrstream/cyclonedds)
|
|
include("${CYCLONEDDS_DIR}/cmake/Modules/Generate.cmake")
|
|
idlc_generate(TARGET uorb_cdrstream
|
|
FEATURES "cdrstream-desc"
|
|
FILES ${uorb_cdr_idl}
|
|
INCLUDES ${idl_include_path}
|
|
BASE_DIR ${idl_include_path}
|
|
WARNINGS no-implicit-extensibility)
|
|
target_link_libraries(uorb_cdrstream INTERFACE cdr)
|
|
|
|
# Generate and overwrite IDL header with custom headers for uORB operatability
|
|
# We typedef the IDL struct the uORB struct so that the IDL offset calculate
|
|
# the offset of internal uORB struct for serialization/deserialization
|
|
|
|
# In the future we might want to turn this around let the IDL struct be the leading ABI
|
|
# However we need to remove the padding for logging and remove the re-ordering of fields
|
|
|
|
add_custom_target(
|
|
uorb_idl_header
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
--uorb-idl-header
|
|
-f ${msg_files}
|
|
-i ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/versioned
|
|
-o ${idl_uorb_path}
|
|
-e ${PX4_SOURCE_DIR}/Tools/msg/templates/cdrstream
|
|
DEPENDS
|
|
uorb_cdrstream
|
|
${msg_files}
|
|
${uorb_cdr_hash}
|
|
${PX4_SOURCE_DIR}/Tools/msg/templates/cdrstream/uorb_idl_header.h.em
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_files.py
|
|
${PX4_SOURCE_DIR}/Tools/msg/px_generate_uorb_topic_helper.py
|
|
COMMENT "Generating uORB compatible IDL headers"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
add_dependencies(uorb_msgs uorb_idl_header)
|
|
|
|
# Compile all CDR compatible message defnitions
|
|
target_link_libraries(uorb_msgs PRIVATE uorb_cdrstream )
|
|
endif()
|
|
|
|
if(CONFIG_MODULES_ZENOH)
|
|
# Update kconfig file for topics
|
|
execute_process(COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/zenoh/px_generate_zenoh_topic_files.py
|
|
--zenoh-config
|
|
-f ${msg_files}
|
|
-o ${PX4_SOURCE_DIR}/src/modules/zenoh/
|
|
-e ${PX4_SOURCE_DIR}/Tools/zenoh/templates/zenoh
|
|
)
|
|
add_custom_command(
|
|
OUTPUT
|
|
${PX4_BINARY_DIR}/src/modules/zenoh/uorb_pubsub_factory.hpp
|
|
COMMAND ${PYTHON_EXECUTABLE} ${PX4_SOURCE_DIR}/Tools/zenoh/px_generate_zenoh_topic_files.py
|
|
--zenoh-pub-sub
|
|
-f ${msg_files}
|
|
-o ${PX4_BINARY_DIR}/src/modules/zenoh/
|
|
-e ${PX4_SOURCE_DIR}/Tools/zenoh/templates/zenoh
|
|
--rihs ${idl_rihs01_out_path}
|
|
DEPENDS
|
|
${msg_files}
|
|
${uorb_cdr_hash}
|
|
${PX4_SOURCE_DIR}/Tools/zenoh/templates/zenoh/uorb_pubsub_factory.hpp.em
|
|
${PX4_SOURCE_DIR}/Tools/zenoh/px_generate_zenoh_topic_files.py
|
|
COMMENT "Generating Zenoh Topic Code"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
VERBATIM
|
|
)
|
|
add_library(zenoh_topics ${PX4_BINARY_DIR}/src/modules/zenoh/uorb_pubsub_factory.hpp)
|
|
set_target_properties(zenoh_topics PROPERTIES LINKER_LANGUAGE CXX)
|
|
endif()
|