booster-robotics-sdk-python 1.0.0__tar.gz → 1.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/.gitignore +1 -0
- booster_robotics_sdk_python-1.2.0/.lfsconfig +3 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/.workflow/git-ee-pipe-build.yml +43 -37
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/.workflow/project-defined.cmake +1 -10
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/PKG-INFO +1 -1
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/ci-c-make-list.cmake +0 -6
- booster_robotics_sdk_python-1.2.0/include/booster/idl/ai/AsrChunk.h +241 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/ai/api.hpp +63 -0
- booster_robotics_sdk_python-1.2.0/include/booster/robot/ai/client.hpp +198 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/ai/const.hpp +2 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/b1/b1_loco_api.hpp +225 -51
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/b1/b1_loco_client.hpp +137 -54
- booster_robotics_sdk_python-1.2.0/include/booster/robot/common/robot_shared.hpp +72 -0
- booster_robotics_sdk_python-1.2.0/include/booster/robot/device/light/light_control_api.hpp +62 -0
- booster_robotics_sdk_python-1.2.0/include/booster/robot/device/light/light_control_client.hpp +71 -0
- {booster_robotics_sdk_python-1.0.0/sdk_release → booster_robotics_sdk_python-1.2.0}/include/booster/robot/rpc/error.hpp +1 -0
- booster_robotics_sdk_python-1.2.0/include/booster/robot/vision/vision_api.hpp +112 -0
- booster_robotics_sdk_python-1.2.0/include/booster/robot/vision/vision_client.hpp +90 -0
- booster_robotics_sdk_python-1.2.0/include/booster/robot/x5_camera/x5_camera_api.hpp +65 -0
- booster_robotics_sdk_python-1.2.0/include/booster/robot/x5_camera/x5_camera_api_const.hpp +28 -0
- booster_robotics_sdk_python-1.2.0/include/booster/robot/x5_camera/x5_camera_client.hpp +93 -0
- booster_robotics_sdk_python-1.2.0/internal_include/booster_internal/idl/b1/PersonFace.h +341 -0
- booster_robotics_sdk_python-1.2.0/internal_include/booster_internal/idl/b1/PersonFaceMsgs.h +274 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/robocup_msgs/Kick.h +19 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/robot/b1/b1_loco_internal_api.hpp +100 -2
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/robot/b1/b1_loco_internal_client.hpp +44 -10
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/pyproject.toml +1 -1
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/python_example/controller_example/arm_demo.py +1 -1
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/python_example/controller_example/move_demo.py +1 -1
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/python_example/sdk_pybind_b1_exmaple.py +46 -1
- booster_robotics_sdk_python-1.2.0/python_example/sdk_pybind_b1_usr_traj_example.py +207 -0
- booster_robotics_sdk_python-1.2.0/python_example/sdk_pybind_light_example.py +113 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/python_example/sdk_pybind_low_level.py +54 -16
- booster_robotics_sdk_python-1.2.0/python_example/sdk_pybind_lui_example.py +103 -0
- booster_robotics_sdk_python-1.2.0/python_example/sdk_pybind_vision_example.py +133 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/CMakeLists.txt +2 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/README.md +81 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/high_level/b1_loco_example_client.cpp +5 -1
- booster_robotics_sdk_python-1.2.0/sdk_release/example/low_level/battery_state_subscriber.cpp +37 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/idl/ai/AsrChunk.h +241 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/idl/b1/RobocupBehaviorStatus.h +238 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/ai/api.hpp +63 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/ai/client.hpp +198 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/ai/const.hpp +2 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/b1/b1_api_const.hpp +1 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/b1/b1_loco_api.hpp +225 -5
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/b1/b1_loco_client.hpp +145 -34
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/common/robot_shared.hpp +78 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/device/light/light_control_api.hpp +62 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/device/light/light_control_client.hpp +71 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0/sdk_release}/include/booster/robot/rpc/error.hpp +1 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/vision/vision_api.hpp +112 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/vision/vision_client.hpp +90 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/x5_camera/x5_camera_api.hpp +65 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/x5_camera/x5_camera_api_const.hpp +28 -0
- booster_robotics_sdk_python-1.2.0/sdk_release/include/booster/robot/x5_camera/x5_camera_client.hpp +93 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/lib/aarch64/libbooster_robotics_sdk.a +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/lib/x86_64/libbooster_robotics_sdk.a +0 -0
- booster_robotics_sdk_python-1.2.0/shared-file-system/rusty-data-root/cfg/commit-dependency.info.json +28 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/shared-file-system/script/s-40-build-component.sh +2 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/common/dds/dds_factory_model.cpp +36 -15
- booster_robotics_sdk_python-1.2.0/src/idl/ai/AsrChunk.cpp +385 -0
- booster_robotics_sdk_python-1.2.0/src/idl/ai/AsrChunk.idl +7 -0
- booster_robotics_sdk_python-1.2.0/src/idl_internal/b1/PersonFace.cpp +575 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/b1/PersonFace.idl +1 -1
- booster_robotics_sdk_python-1.2.0/src/idl_internal/b1/PersonFaceMsgs.cpp +437 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/b1/PersonFaceMsgs.idl +1 -1
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/robocup_msgs/Kick.cpp +34 -3
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/robocup_msgs/Kick.idl +1 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/python/binding.cpp +604 -16
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/python/controller/booster_robotics_sdk_python/arm_controller.py +2 -2
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/python/controller/booster_robotics_sdk_python/move_controller.py +2 -2
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/robot/ai/client.cpp +30 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/robot/channel/channel_factory.cpp +8 -1
- booster_robotics_sdk_python-1.2.0/src/robot/device/light/client.cpp +44 -0
- booster_robotics_sdk_python-1.2.0/src/robot/vision/vision_client.cpp +46 -0
- booster_robotics_sdk_python-1.2.0/src/robot/x5_camera/x5_camera_client.cpp +37 -0
- booster_robotics_sdk_python-1.2.0/test/camera_rpc/CMakeLists.txt +38 -0
- booster_robotics_sdk_python-1.2.0/test/camera_rpc/src/rpc_client.cpp +79 -0
- booster_robotics_sdk_python-1.2.0/test/camera_rpc/src/rpc_server.cpp +20 -0
- booster_robotics_sdk_python-1.2.0/test/camera_rpc/src/x5_camera_rpc.cpp +247 -0
- booster_robotics_sdk_python-1.2.0/test/camera_rpc/src/x5_camera_rpc.hpp +67 -0
- booster_robotics_sdk_python-1.0.0/.lfsconfig +0 -3
- booster_robotics_sdk_python-1.0.0/include/booster/robot/ai/client.hpp +0 -103
- booster_robotics_sdk_python-1.0.0/include/booster/robot/common/robot_shared.hpp +0 -68
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/PersonFace.h +0 -342
- booster_robotics_sdk_python-1.0.0/internal_include/booster_internal/idl/b1/PersonFaceMsgs.h +0 -275
- booster_robotics_sdk_python-1.0.0/sdk_release/README.md +0 -66
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/ai/client.hpp +0 -103
- booster_robotics_sdk_python-1.0.0/sdk_release/include/booster/robot/common/robot_shared.hpp +0 -68
- booster_robotics_sdk_python-1.0.0/shared-file-system/rusty-data-root/cfg/commit-dependency.info.json +0 -16
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFace.cpp +0 -554
- booster_robotics_sdk_python-1.0.0/src/idl_internal/b1/PersonFaceMsgs.cpp +0 -449
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/.clang-format +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/.gitattributes +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/.gitmodules +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/CMakeLists.txt +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/README.md +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/deps_install.sh +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/common/dds/dds_callback.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/common/dds/dds_entity.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/common/dds/dds_factory_model.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/common/dds/dds_topic_channel.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/ai/Subtitle.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/BatteryState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/ButtonEvent.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/FallDownState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/HandReplyData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/HandReplyParam.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/HandTouchData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/HandTouchParam.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/ImuState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/LightControlMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/LightPixel.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/LowCmd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/LowState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/MotorCmd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/MotorState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/Odometer.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/ProneBodyControlStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RemoteControllerState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RobotDdsBatteryStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RobotDdsImuStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RobotDdsJointStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RobotProcessState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RobotProcessStateMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RobotReplayTrajID.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RobotStates.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/b1/RobotStatusDdsMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/builtin_interfaces/Time.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/rpc/RpcReqMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/rpc/RpcRespMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/sensor_msgs/CameraInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/sensor_msgs/CompressedImage.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/sensor_msgs/Image.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/sensor_msgs/RegionOfInterest.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/idl/std_msgs/Header.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/b1/b1_api_const.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/channel/channel_factory.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/channel/channel_publisher.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/channel/channel_subscriber.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/common/entities.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/rpc/request.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/rpc/request_header.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/rpc/response.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/rpc/response_header.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/rpc/rpc_client.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/robot/rpc/rpc_server.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/include/booster/third_party/nlohmann_json/json.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_distribution/README.md +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_distribution/build_package.sh +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_distribution/install.sh +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/common/ros_dds_bridge/bridge.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/b1/FallDownRecoveryState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/b1/RawBytesMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/b1/RawBytesStamped.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/booster_msgs/BinaryData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/booster_msgs/BinaryDataCdrAux.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/demo/DemoMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/demo/DemoMsgCdrAux.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/Point.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/PointCdrAux.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/Pose.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/PoseCdrAux.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/PoseStamped.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/Quaternion.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/Transform.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/TransformStamped.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/geometry_msgs/Vector3.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/robocup_msgs/Ball.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/sensor_msgs/Imu.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/sensor_msgs/ImuCdrAux.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/sensor_msgs/JointState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/sensor_msgs/JointStateCdrAux.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/idl/tf2_msgs/TFMessage.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/internal_include/booster_internal/robot/b1/b1_internal_api_const.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/python_example/__init__.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/python_example/sdk_pybind_ai_example.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/release.sh +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/.gitignore +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/LICENSE +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/high_level/b1_7dof_arm_sdk_example.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/high_level/b1_arm_sdk_example.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/high_level/b1_loco_example_client.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/b1_7dof_arm_low_sdk_example.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/b1_low_sdk_example.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/low_level_for_custom_publisher.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/low_level_hand_data_subscriber.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/low_level_hand_data_subscriber.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/low_level_publisher.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/low_level_publisher.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/low_level_subscriber.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/low_level_subscriber.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/odometer_example.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/example/low_level/odometer_example.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/common/dds/dds_callback.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/common/dds/dds_entity.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/common/dds/dds_factory_model.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/common/dds/dds_topic_channel.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/ai/Subtitle.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/BatteryState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/ButtonEvent.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/FallDownState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/HandReplyData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/HandReplyParam.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/HandTouchData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/HandTouchParam.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/ImuState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/LightControlMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/LightPixel.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/LowCmd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/LowState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/MotorCmd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/MotorState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/Odometer.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/ProneBodyControlStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RemoteControllerState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RobotDdsBatteryStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RobotDdsImuStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RobotDdsJointStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RobotProcessState.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RobotProcessStateMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RobotReplayTrajID.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RobotStates.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/b1/RobotStatusDdsMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/builtin_interfaces/Time.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/rpc/RpcReqMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/rpc/RpcRespMsg.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/sensor_msgs/CameraInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/sensor_msgs/CompressedImage.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/sensor_msgs/Image.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/sensor_msgs/RegionOfInterest.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/idl/std_msgs/Header.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/channel/channel_factory.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/channel/channel_publisher.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/channel/channel_subscriber.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/common/entities.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/rpc/request.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/rpc/request_header.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/rpc/response.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/rpc/response_header.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/rpc/rpc_client.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/robot/rpc/rpc_server.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/include/booster/third_party/nlohmann_json/json.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/install.sh +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/pyproject.toml +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/python/binding.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/Cdr.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/CdrEncoding.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/CdrSizeCalculator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/FastBuffer.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/FastCdr.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/cdr/fixed_size_string.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/config.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/detail/container_recursive_inspector.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/eProsima_auto_link.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/exceptions/BadOptionalAccessException.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/exceptions/BadParamException.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/exceptions/Exception.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/exceptions/LockedExternalAccessException.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/exceptions/NotEnoughMemoryException.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/fastcdr_dll.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/xcdr/MemberId.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/xcdr/detail/optional.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/xcdr/external.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastcdr/xcdr/optional.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/common/ReplyHeader.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/common/RequestHeader.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/common/Types.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/topic/BuiltinTopicKey.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/topic/ParticipantBuiltinTopicData.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/topic/PublicationBuiltinTopicData.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/topic/SubscriptionBuiltinTopicData.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/topic/TopicBuiltinTopicData.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupManager.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupReplyListener.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/TypeLookupRequestListener.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/builtin/typelookup/common/TypeLookupTypes.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/common/InstanceHandle.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/Entity.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/LoanableArray.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/LoanableCollection.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/LoanableSequence.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/LoanableTypedCollection.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/StackAllocatedSequence.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/UserAllocatedSequence.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/condition/Condition.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/condition/GuardCondition.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/condition/StatusCondition.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/condition/WaitSet.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/policy/ParameterTypes.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/policy/QosPolicies.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/policy/ReaderDataLifecycleQosPolicy.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/policy/WriterDataLifecycleQosPolicy.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/BaseStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/DeadlineMissedStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/IncompatibleQosStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/LivelinessChangedStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/MatchedStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/PublicationMatchedStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/SampleRejectedStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/StatusMask.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/core/status/SubscriptionMatchedStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipant.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipantFactory.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/domain/DomainParticipantListener.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/domain/qos/DomainParticipantFactoryQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/domain/qos/DomainParticipantQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/log/Colors.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/log/FileConsumer.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/log/Log.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/log/OStreamConsumer.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/log/StdoutConsumer.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/log/StdoutErrConsumer.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/publisher/DataWriter.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/publisher/DataWriterListener.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/publisher/Publisher.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/publisher/PublisherListener.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/publisher/qos/DataWriterQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/publisher/qos/PublisherQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/publisher/qos/WriterQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/DataReader.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/DataReaderListener.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/InstanceState.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/ReadCondition.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/SampleInfo.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/SampleState.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/Subscriber.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/SubscriberListener.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/ViewState.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/qos/DataReaderQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/qos/ReaderQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/subscriber/qos/SubscriberQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/ContentFilteredTopic.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/IContentFilter.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/IContentFilterFactory.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/Topic.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/TopicDataType.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/TopicDescription.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/TopicListener.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/TypeSupport.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/dds/topic/qos/TopicQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/Endpoint.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/RTPSDomain.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/BuiltinTransports.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/EndpointAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/ExternalLocators.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/HistoryAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/PropertyPolicy.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/RTPSParticipantAllocationAttributes.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/RTPSParticipantAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/ReaderAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/ServerAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/ThreadSettings.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/attributes/WriterAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/BuiltinProtocols.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/data/BuiltinEndpoints.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/data/ContentFilterProperty.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/data/NetworkConfiguration.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/data/ParticipantProxyData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/data/ReaderProxyData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/data/WriterProxyData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDP.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDPSimple.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/endpoint/EDPStatic.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDP.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDPListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/discovery/participant/PDPSimple.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/liveliness/WLP.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/builtin/liveliness/WLPListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/BinaryProperty.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/CDRMessage_t.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/CacheChange.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/CdrSerialization.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/ChangeKind_t.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/EntityId_t.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/FragmentNumber.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/Guid.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/GuidPrefix_t.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/InstanceHandle.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/Locator.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/LocatorList.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/LocatorListComparisons.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/LocatorSelector.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/LocatorSelectorEntry.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/LocatorWithMask.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/LocatorsIterator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/MatchingInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/PortParameters.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/Property.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/RemoteLocators.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/SampleIdentity.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/SequenceNumber.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/SerializedPayload.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/Time_t.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/Token.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/Types.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/VendorId_t.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/WriteParams.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/common/all_common.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/exceptions/Exception.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerConsts.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerDescriptor.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/flowcontrol/FlowControllerSchedulerPolicy.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/flowcontrol/ThroughputControllerDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/history/History.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/history/IChangePool.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/history/IPayloadPool.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/history/ReaderHistory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/history/WriterHistory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/interfaces/IReaderDataFilter.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/messages/CDRMessage.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/messages/CDRMessage.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/messages/MessageReceiver.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageCreator.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageGroup.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/messages/RTPSMessageSenderInterface.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/messages/RTPS_messages.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/network/SenderResource.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/participant/ParticipantDiscoveryInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/participant/RTPSParticipant.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/participant/RTPSParticipantListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/reader/RTPSReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/reader/ReaderDiscoveryInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/reader/ReaderListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/reader/StatefulPersistentReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/reader/StatefulReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/reader/StatelessPersistentReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/reader/StatelessReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/resources/ResourceEvent.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/resources/ResourceManagement.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/resources/TimedEvent.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/rtps_all.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/rtps_fwd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/AccessControl.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/EndpointSecurityAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/ParticipantSecurityAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/accesscontrol/SecurityMaskUtilities.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/authentication/Authentication.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/authentication/Handshake.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/common/Handle.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/common/ParticipantGenericMessage.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/common/SharedSecretHandle.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoKeyExchange.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoKeyFactory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoTransform.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/cryptography/CryptoTypes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/cryptography/Cryptography.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/exceptions/SecurityException.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/logging/BuiltinLoggingType.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/logging/LogOptions.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/logging/Logging.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/logging/LoggingLevel.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/security/logging/NameValuePair.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/ChainingTransport.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/ChainingTransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/PortBasedTransportDescriptor.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/SenderResource.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/SocketTransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/TCPTransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/TCPv4TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/TCPv6TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/TransportDescriptorInterface.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/TransportInterface.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/TransportReceiverInterface.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/UDPTransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/UDPv4TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/UDPv6TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/shared_mem/SharedMemTransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/transport/test_UDPv4TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/ChangeForReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/DeliveryRetCode.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/IReaderDataFilter.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/LivelinessData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/LivelinessManager.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/LocatorSelectorSender.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/PersistentWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/RTPSWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/ReaderLocator.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/ReaderProxy.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/StatefulPersistentWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/StatefulWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/StatelessPersistentWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/StatelessWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/WriterDiscoveryInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/rtps/writer/WriterListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/IListeners.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/dds/domain/DomainParticipant.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/dds/publisher/qos/DataWriterQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/dds/subscriber/qos/DataReaderQos.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/monitorservice_types.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/rtps/StatisticsCommon.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/Interfaces.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IConnectionsObserver.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IConnectionsQueryable.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IProxyObserver.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IProxyQueryable.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IStatusObserver.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/rtps/monitor_service/interfaces/IStatusQueryable.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/topic_names.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/statistics/types.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/thirdparty/optionparser/optionparser/optionparser.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastdds/thirdparty/optionparser/optionparser.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/Domain.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/TopicDataType.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/attributes/LibrarySettingsAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/attributes/ParticipantAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/attributes/PublisherAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/attributes/ReplierAttributes.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/attributes/RequesterAttributes.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/attributes/SubscriberAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/attributes/TopicAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/attributes/all_attributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/common/KeyedChanges.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/config/doxygen_modules.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/config.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/eProsima_auto_link.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/fastrtps_all.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/fastrtps_dll.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/fastrtps_fwd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/log/Colors.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/log/FileConsumer.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/log/Log.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/log/StdoutConsumer.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/participant/Participant.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/participant/ParticipantListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/publisher/Publisher.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/publisher/PublisherHistory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/publisher/PublisherListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/DeadlineMissedStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/IncompatibleQosStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/LivelinessChangedStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/LivelinessLostStatus.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/ParameterTypes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/QosPolicies.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/ReaderQos.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/SampleRejectedStatus.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/qos/WriterQos.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/Endpoint.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/RTPSDomain.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/attributes/EndpointAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/attributes/HistoryAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/attributes/PropertyPolicy.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/attributes/RTPSParticipantAllocationAttributes.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/attributes/RTPSParticipantAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/attributes/ReaderAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/attributes/ServerAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/attributes/WriterAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/BuiltinProtocols.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/data/ParticipantProxyData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/data/ReaderProxyData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/data/WriterProxyData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDP.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDPSimple.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/endpoint/EDPStatic.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDP.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDPListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/discovery/participant/PDPSimple.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/liveliness/WLP.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/builtin/liveliness/WLPListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/BinaryProperty.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/CDRMessage_t.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/CacheChange.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/FragmentNumber.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/Guid.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/InstanceHandle.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/Locator.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/LocatorListComparisons.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/LocatorSelector.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/LocatorSelectorEntry.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/MatchingInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/PortParameters.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/Property.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/RemoteLocators.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/SampleIdentity.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/SequenceNumber.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/SerializedPayload.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/Time_t.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/Token.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/Types.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/WriteParams.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/common/all_common.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/exceptions/Exception.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/flowcontrol/ThroughputControllerDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/history/History.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/history/ReaderHistory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/history/WriterHistory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/messages/CDRMessage.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/messages/MessageReceiver.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageCreator.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageGroup.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/messages/RTPSMessageSenderInterface.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/messages/RTPS_messages.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/network/SenderResource.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/participant/ParticipantDiscoveryInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/participant/RTPSParticipant.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/participant/RTPSParticipantListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/reader/RTPSReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/reader/ReaderDiscoveryInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/reader/ReaderListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/reader/StatefulPersistentReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/reader/StatefulReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/reader/StatelessPersistentReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/reader/StatelessReader.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/resources/ResourceEvent.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/resources/ResourceManagement.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/resources/TimedEvent.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/rtps_all.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/rtps_fwd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/AccessControl.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/EndpointSecurityAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/ParticipantSecurityAttributes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/accesscontrol/SecurityMaskUtilities.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/authentication/Authentication.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/authentication/Handshake.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/common/Handle.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/common/ParticipantGenericMessage.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/common/SharedSecretHandle.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoKeyExchange.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoKeyFactory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoTransform.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/CryptoTypes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/cryptography/Cryptography.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/security/exceptions/SecurityException.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/LivelinessData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/LivelinessManager.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/PersistentWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/RTPSWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/ReaderLocator.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/ReaderProxy.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/StatefulPersistentWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/StatefulWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/StatelessPersistentWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/StatelessWriter.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/WriterDiscoveryInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/rtps/writer/WriterListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/subscriber/SampleInfo.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/subscriber/Subscriber.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/subscriber/SubscriberHistory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/subscriber/SubscriberListener.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/SocketTransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/TCPTransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/TCPv4TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/TCPv6TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/TransportDescriptorInterface.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/TransportInterface.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/TransportReceiverInterface.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/UDPTransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/UDPv4TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/UDPv6TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/transport/test_UDPv4TransportDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/AnnotationDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/AnnotationParameterValue.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/BuiltinAnnotationsTypeObject.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicDataFactory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicDataHelper.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicDataPtr.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicPubSubType.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicType.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilder.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilderFactory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicTypeBuilderPtr.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicTypeMember.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/DynamicTypePtr.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/MemberDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/TypeDescriptor.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/TypeIdentifier.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/TypeIdentifierTypes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/TypeNamesGenerator.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/TypeObject.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/TypeObjectFactory.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/TypeObjectHashId.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/types/TypesBase.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/DBQueue.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/IPFinder.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/IPLocator.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/ProxyPool.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/Semaphore.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/StringMatching.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/System.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/TimeConversion.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/TimedConditionVariable.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/TimedMutex.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/collections/ResourceLimitedContainerConfig.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/collections/ResourceLimitedVector.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/collections/foonathan_memory_helpers.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/fixed_size_bitmap.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/fixed_size_string.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/md5.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/shared_mutex.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/utils/string_convert.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/xmlparser/XMLEndpointParser.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/xmlparser/XMLParser.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/xmlparser/XMLParserCommon.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/xmlparser/XMLProfileManager.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/fastrtps/xmlparser/XMLTree.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/aligned_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/allocator_storage.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/allocator_traits.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/config.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/config_impl.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/container.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/container_node_sizes_impl.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/debugging.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/default_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/deleter.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/align.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/assert.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/container_node_sizes.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/container_node_sizes_impl.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/debug_helpers.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/ebo_storage.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/free_list.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/free_list_array.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/ilog2.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/lowlevel_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/memory_stack.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/small_free_list.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/detail/utility.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/error.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/fallback_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/heap_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/iteration_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/joint_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/malloc_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_arena.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool_collection.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_pool_type.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_resource_adapter.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/memory_stack.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/namespace_alias.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/new_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/segregator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/smart_ptr.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/static_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/std_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/temporary_allocator.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/threading.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/tracking.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/include/foonathan_memory/foonathan/memory/virtual_memory.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/aarch64/20/libfastcdr.so +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/aarch64/20/libfastrtps.so +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/aarch64/20/libfoonathan_memory-0.7.3.a +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/aarch64/libfastcdr.so +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/aarch64/libfastrtps.so +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/aarch64/libfoonathan_memory-0.7.3.a +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/x86_64/20/libfastcdr.so +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/x86_64/20/libfastrtps.so +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/x86_64/20/libfoonathan_memory-0.7.3.a +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/x86_64/libfastcdr.so +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/x86_64/libfastrtps.so +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/sdk_release/third_party/lib/x86_64/libfoonathan_memory-0.7.3.a +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/shared-file-system/script/s-30-install-dependency.sh +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/common/dds/dds_callback.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/common/dds/dds_topic_channel.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/common/ros_dds_bridge/bridge.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/ai/Subtitle.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/ai/Subtitle.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/BatteryState.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/BatteryState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/ButtonEvent.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/ButtonEvent.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/FallDownState.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/FallDownState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandReplyData.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandReplyData.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandReplyParam.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandReplyParam.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandTouchData.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandTouchData.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandTouchData.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandTouchParam.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandTouchParam.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/HandTouchParam.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/ImuState.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/ImuState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/LightControlMsg.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/LightControlMsg.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/LightPixel.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/LightPixel.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/LowCmd.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/LowCmd.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/LowState.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/LowState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/MotorCmd.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/MotorCmd.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/MotorState.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/MotorState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/Odometer.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/Odometer.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/ProneBodyControlStatus.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/ProneBodyControlStatus.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RemoteControllerState.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RemoteControllerState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotDdsBatteryStatus.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotDdsBatteryStatus.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotDdsImuStatus.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotDdsImuStatus.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotDdsJointStatus.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotDdsJointStatus.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotProcessState.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotProcessState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotProcessStateMsg.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotProcessStateMsg.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotReplayTrajID.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotReplayTrajID.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotStates.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotStates.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotStatusDdsMsg.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/b1/RobotStatusDdsMsg.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/builtin_interfaces/Time.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/builtin_interfaces/Time.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/rpc/RpcReqMsg.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/rpc/RpcReqMsg.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/rpc/RpcRespMsg.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/rpc/RpcRespMsg.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/sensor_msgs/CameraInfo.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/sensor_msgs/CameraInfo.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/sensor_msgs/CompressedImage.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/sensor_msgs/CompressedImage.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/sensor_msgs/Image.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/sensor_msgs/Image.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/sensor_msgs/RegionOfInterest.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/sensor_msgs/RegionOfInterest.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/std_msgs/Header.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl/std_msgs/Header.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/b1/FallDownRecoveryState.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/b1/FallDownRecoveryState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/b1/RawBytesMsg.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/b1/RawBytesMsg.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/b1/RawBytesStamped.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/b1/RawBytesStamped.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/booster_msgs/BinaryData.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/booster_msgs/BinaryData.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/booster_msgs/BinaryDataCdrAux.ipp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/demo/DemoMsg.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/demo/DemoMsg.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/demo/DemoMsgCdrAux.ipp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Point.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Point.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/PointCdrAux.ipp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Pose.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Pose.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/PoseCdrAux.ipp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/PoseStamped.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/PoseStamped.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Quaternion.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Quaternion.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Transform.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Transform.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/TransformStamped.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/TransformStamped.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Vector3.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/geometry_msgs/Vector3.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/robocup_msgs/Ball.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/robocup_msgs/Ball.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/sensor_msgs/Imu.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/sensor_msgs/Imu.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/sensor_msgs/ImuCdrAux.ipp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/sensor_msgs/JointState.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/sensor_msgs/JointState.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/sensor_msgs/JointStateCdrAux.ipp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/tf2_msgs/TFMessage.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/idl_internal/tf2_msgs/TFMessage.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/python/controller/booster_robotics_sdk_python/__init__.py +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/python/internal_binding.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/robot/b1/b1_loco_client.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/robot/b1/b1_loco_internal_client.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/robot/channel/channel_publisher.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/robot/channel/channel_subscriber.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/robot/rpc/rpc_client.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/src/robot/rpc/rpc_server.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/demo_test/demo_publisher.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/demo_test/demo_publisher.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/demo_test/demo_subscriber.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/demo_test/demo_subscriber.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/demo_test/demo_test.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/pub_sub/publisher.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/pub_sub/subscriber.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/rpc/loco_rpc_server.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/rpc/rpc_client.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/rpc/rpc_server.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/test/sim_bridge/sim_bridge_subscriber.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/CMakeLists.txt +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/codegen.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/cpp_merger.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/dds_file_manager.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/header_merger.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/helper.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/merger.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/Header.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/Header.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/Header.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/LowCmd.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/LowCmd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/LowCmd.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/MotorCmd.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/MotorCmd.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/MotorCmd.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/MotorCmdCdrAux.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/MotorCmdCdrAux.ipp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/MotorCmdPubSubTypes.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/MotorCmdPubSubTypes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/Time.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/Time.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/Time.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/Time.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/TimeCdrAux.hpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/TimeCdrAux.ipp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/TimePubSubTypes.cxx +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/TimePubSubTypes.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/test.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/test.h +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/temp/test.idl +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/test_publisher.cpp +0 -0
- {booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/tools/booster_fastdds_gen/test/test_subscriber.cpp +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
version: '1.0'
|
|
2
|
-
name: git-ee-pipe-
|
|
3
|
-
displayName: git-ee-pipe-
|
|
2
|
+
name: git-ee-pipe-1760465487
|
|
3
|
+
displayName: git-ee-pipe-1760465487
|
|
4
4
|
triggers:
|
|
5
5
|
trigger: auto
|
|
6
6
|
push:
|
|
7
7
|
branches:
|
|
8
8
|
prefix:
|
|
9
|
-
- ''
|
|
9
|
+
- 'ci-'
|
|
10
10
|
|
|
11
11
|
# 太蠢了
|
|
12
12
|
# Yaml的锚点语法不支持
|
|
@@ -27,11 +27,8 @@ stages:
|
|
|
27
27
|
- 7a200648-f7df-484f-89e6-85a616a66e7c
|
|
28
28
|
- a8b94e6c-c723-4e77-bf12-12c6ac67f349
|
|
29
29
|
- 76ba81f4-4bfb-4734-bf9e-adb6b428a216
|
|
30
|
-
- 0851ada9-f15a-46cb-8420-f3552bc59870
|
|
31
30
|
script:
|
|
32
31
|
- export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-wait-u-24-unknown-linux-gnu"
|
|
33
|
-
- export CUSTOM_ENV_DOWNLOAD_TARGET_ARRAY="aarch64-unknown-linux-gnu;x86_64-unknown-linux-gnu"
|
|
34
|
-
- export CUSTOM_ENV_DOWNLOAD_OS_VERSION="Linux 22.04 Ubuntu"
|
|
35
32
|
- curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
36
33
|
- curl --silent --show-error --output s-80-action-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-80-action-build-project.sh
|
|
37
34
|
- sh s-80-action-build-project.sh
|
|
@@ -51,6 +48,10 @@ stages:
|
|
|
51
48
|
hostID:
|
|
52
49
|
- de76b749-9d62-440d-88d8-4373526769a6
|
|
53
50
|
- 33b6f200-5b8d-4e88-94ba-b21a9d847e98
|
|
51
|
+
- 926aebf7-42a1-4794-8166-f0ca28fadab8
|
|
52
|
+
- 2e9d29c7-31c2-4814-ae78-2108163acb5c
|
|
53
|
+
- e386b9c2-5a21-4e55-9fd2-6a8ef3e8c5f6
|
|
54
|
+
- c490100d-fc59-486e-bea0-4a5d246176dc
|
|
54
55
|
script:
|
|
55
56
|
- export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-build-22-aarch64-unknown-linux-gnu"
|
|
56
57
|
- curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
@@ -58,18 +59,23 @@ stages:
|
|
|
58
59
|
- sh s-80-action-build-project.sh
|
|
59
60
|
|
|
60
61
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
62
|
+
- step: shell@agent
|
|
63
|
+
name: step-build-u-24-aarch64-unknown-linux-gnu
|
|
64
|
+
displayName: step-build-u-24-aarch64-unknown-linux-gnu
|
|
65
|
+
hostGroupID:
|
|
66
|
+
ID: u-24-aarch64-unknown-linux-gnu
|
|
67
|
+
hostID:
|
|
68
|
+
- ceb50007-5022-4528-82f8-cac56fff1997
|
|
69
|
+
- de35a264-5cdb-40f0-9f61-20959d44ec47
|
|
70
|
+
- e2b356f1-bc7c-4218-baf9-992ecc11b3c0
|
|
71
|
+
- b8c44a03-2fdc-449e-b582-5b92c740fcb6
|
|
72
|
+
- 15d27cd4-7fb2-484d-ad03-b8552fc20701
|
|
73
|
+
- afee24da-28c6-4476-8860-7ec42a82a27b
|
|
74
|
+
script:
|
|
75
|
+
- export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-build-24-aarch64-unknown-linux-gnu"
|
|
76
|
+
- curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
77
|
+
- curl --silent --show-error --output s-80-action-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-80-action-build-project.sh
|
|
78
|
+
- sh s-80-action-build-project.sh
|
|
73
79
|
|
|
74
80
|
|
|
75
81
|
- step: shell@agent
|
|
@@ -93,22 +99,22 @@ stages:
|
|
|
93
99
|
- sh s-80-action-build-project.sh
|
|
94
100
|
|
|
95
101
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
102
|
+
- step: shell@agent
|
|
103
|
+
name: step-build-u-24-x86_64-unknown-linux-gnu
|
|
104
|
+
displayName: step-build-u-24-x86_64-unknown-linux-gnu
|
|
105
|
+
hostGroupID:
|
|
106
|
+
ID: u-24-x86_64-unknown-linux-gnu
|
|
107
|
+
hostID:
|
|
108
|
+
- fbd07b0d-41ea-420d-8d8c-27aa3d77fcc5
|
|
109
|
+
- ea4bde4e-6911-4730-9ed5-7dd1f3199c53
|
|
110
|
+
- f98df53b-60da-4946-b710-7d3e3b585bcc
|
|
111
|
+
- 94f48ac9-2a23-4868-a998-392155eb3849
|
|
112
|
+
- d782e716-897c-42ee-822c-3c1d50749b10
|
|
113
|
+
- 6b01cde0-f4d2-4080-8157-d3a721498248
|
|
114
|
+
- f4c4a860-d0ff-40fc-ae43-5fe65726d6f1
|
|
115
|
+
- 4a41bf06-87ef-4cbd-b92f-163096f2a542
|
|
116
|
+
script:
|
|
117
|
+
- export CUSTOM_ENV_JOB_STAGE_STEP_NAME="step-build-24-x86_64-unknown-linux-gnu"
|
|
118
|
+
- curl --silent --show-error --output s-70-closure-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-70-closure-build-project.sh
|
|
119
|
+
- curl --silent --show-error --output s-80-action-build-project.sh http://192.168.33.162:20103/file-build-storage/script/s-80-action-build-project.sh
|
|
120
|
+
- sh s-80-action-build-project.sh
|
|
@@ -16,20 +16,11 @@ endmacro()
|
|
|
16
16
|
macro(closure_generate_project_name)
|
|
17
17
|
get_filename_component(PLUGIN_TARGET_NAME "${CMAKE_CURRENT_SOURCE_DIR}" NAME)
|
|
18
18
|
string(REPLACE "-" "_" C_MAKE_CUSTOM_SUB_LINE_TARGET_NAME ${PLUGIN_TARGET_NAME})
|
|
19
|
+
string(REPLACE "_" "-" C_MAKE_CUSTOM_MID_LINE_TARGET_NAME ${PLUGIN_TARGET_NAME})
|
|
19
20
|
set(C_MAKE_CUSTOM_PROJECT_NAME "project_${C_MAKE_CUSTOM_SUB_LINE_TARGET_NAME}")
|
|
20
21
|
endmacro()
|
|
21
22
|
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
24
|
macro(closure_import_prepare_project)
|
|
34
25
|
endmacro()
|
|
35
26
|
|
{booster_robotics_sdk_python-1.0.0 → booster_robotics_sdk_python-1.2.0}/ci-c-make-list.cmake
RENAMED
|
@@ -32,12 +32,6 @@ list(FILTER BOOSTER_ROBOTICS_SDK_SOURCES EXCLUDE REGEX "src/python/.*\\.cpp")
|
|
|
32
32
|
add_library(${LIB_BOOSTER_ROBOTICS_SDK} ${BOOSTER_ROBOTICS_SDK_SOURCES})
|
|
33
33
|
closure_link_target_lib(${LIB_BOOSTER_ROBOTICS_SDK})
|
|
34
34
|
|
|
35
|
-
target_link_libraries(${LIB_BOOSTER_ROBOTICS_SDK}
|
|
36
|
-
fastrtps
|
|
37
|
-
fastcdr
|
|
38
|
-
libfoonathan_memory-0.7.3.a
|
|
39
|
-
)
|
|
40
|
-
|
|
41
35
|
macro(default_install_none)
|
|
42
36
|
endmacro()
|
|
43
37
|
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
// Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
|
|
2
|
+
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
|
|
15
|
+
/*!
|
|
16
|
+
* @file AsrChunk.h
|
|
17
|
+
* This header file contains the declaration of the described types in the IDL
|
|
18
|
+
* file.
|
|
19
|
+
*
|
|
20
|
+
* This file was generated by the tool fastddsgen.
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
#ifndef _FAST_DDS_GENERATED_BOOSTER_INTERFACE_MSG_ASRCHUNK_H_
|
|
24
|
+
#define _FAST_DDS_GENERATED_BOOSTER_INTERFACE_MSG_ASRCHUNK_H_
|
|
25
|
+
|
|
26
|
+
#include <array>
|
|
27
|
+
#include <bitset>
|
|
28
|
+
#include <cstdint>
|
|
29
|
+
#include <fastcdr/cdr/fixed_size_string.hpp>
|
|
30
|
+
#include <fastcdr/xcdr/external.hpp>
|
|
31
|
+
#include <fastcdr/xcdr/optional.hpp>
|
|
32
|
+
#include <map>
|
|
33
|
+
#include <string>
|
|
34
|
+
#include <vector>
|
|
35
|
+
|
|
36
|
+
// ------------------------------ Pub Sub Type Start
|
|
37
|
+
// ----------------------------
|
|
38
|
+
#include <fastdds/rtps/common/InstanceHandle.h>
|
|
39
|
+
#include <fastdds/rtps/common/SerializedPayload.h>
|
|
40
|
+
#include <fastrtps/utils/md5.h>
|
|
41
|
+
|
|
42
|
+
#include <fastdds/dds/core/policy/QosPolicies.hpp>
|
|
43
|
+
#include <fastdds/dds/topic/TopicDataType.hpp>
|
|
44
|
+
|
|
45
|
+
#if !defined(GEN_API_VER) || (GEN_API_VER != 2)
|
|
46
|
+
#error \
|
|
47
|
+
Generated AsrChunk is not compatible with current installed Fast DDS. Please, regenerate it with fastddsgen.
|
|
48
|
+
#endif // GEN_API_VER
|
|
49
|
+
|
|
50
|
+
// ------------------------------ Pub Sub Type End ----------------------------
|
|
51
|
+
|
|
52
|
+
#if defined(_WIN32)
|
|
53
|
+
#if defined(EPROSIMA_USER_DLL_EXPORT)
|
|
54
|
+
#define eProsima_user_DllExport __declspec(dllexport)
|
|
55
|
+
#else
|
|
56
|
+
#define eProsima_user_DllExport
|
|
57
|
+
#endif // EPROSIMA_USER_DLL_EXPORT
|
|
58
|
+
#else
|
|
59
|
+
#define eProsima_user_DllExport
|
|
60
|
+
#endif // _WIN32
|
|
61
|
+
|
|
62
|
+
#if defined(_WIN32)
|
|
63
|
+
#if defined(EPROSIMA_USER_DLL_EXPORT)
|
|
64
|
+
#if defined(ASRCHUNK_SOURCE)
|
|
65
|
+
#define ASRCHUNK_DllAPI __declspec(dllexport)
|
|
66
|
+
#else
|
|
67
|
+
#define ASRCHUNK_DllAPI __declspec(dllimport)
|
|
68
|
+
#endif // ASRCHUNK_SOURCE
|
|
69
|
+
#else
|
|
70
|
+
#define ASRCHUNK_DllAPI
|
|
71
|
+
#endif // EPROSIMA_USER_DLL_EXPORT
|
|
72
|
+
#else
|
|
73
|
+
#define ASRCHUNK_DllAPI
|
|
74
|
+
#endif // _WIN32
|
|
75
|
+
|
|
76
|
+
namespace eprosima {
|
|
77
|
+
namespace fastcdr {
|
|
78
|
+
class Cdr;
|
|
79
|
+
class CdrSizeCalculator;
|
|
80
|
+
} // namespace fastcdr
|
|
81
|
+
} // namespace eprosima
|
|
82
|
+
|
|
83
|
+
namespace booster_interface {
|
|
84
|
+
|
|
85
|
+
namespace msg {
|
|
86
|
+
|
|
87
|
+
/*!
|
|
88
|
+
* @brief This class represents the structure AsrChunk defined by the user in
|
|
89
|
+
* the IDL file.
|
|
90
|
+
* @ingroup AsrChunk
|
|
91
|
+
*/
|
|
92
|
+
class AsrChunk : public eprosima::fastdds::dds::TopicDataType {
|
|
93
|
+
public:
|
|
94
|
+
/*!
|
|
95
|
+
* @brief Copy constructor.
|
|
96
|
+
* @param x Reference to the object booster_interface::msg::AsrChunk that will
|
|
97
|
+
* be copied.
|
|
98
|
+
*/
|
|
99
|
+
eProsima_user_DllExport AsrChunk(const AsrChunk& x);
|
|
100
|
+
|
|
101
|
+
/*!
|
|
102
|
+
* @brief Move constructor.
|
|
103
|
+
* @param x Reference to the object booster_interface::msg::AsrChunk that will
|
|
104
|
+
* be copied.
|
|
105
|
+
*/
|
|
106
|
+
eProsima_user_DllExport AsrChunk(AsrChunk&& x) noexcept;
|
|
107
|
+
|
|
108
|
+
/*!
|
|
109
|
+
* @brief Copy assignment.
|
|
110
|
+
* @param x Reference to the object booster_interface::msg::AsrChunk that will
|
|
111
|
+
* be copied.
|
|
112
|
+
*/
|
|
113
|
+
eProsima_user_DllExport AsrChunk& operator=(const AsrChunk& x);
|
|
114
|
+
|
|
115
|
+
/*!
|
|
116
|
+
* @brief Move assignment.
|
|
117
|
+
* @param x Reference to the object booster_interface::msg::AsrChunk that will
|
|
118
|
+
* be copied.
|
|
119
|
+
*/
|
|
120
|
+
eProsima_user_DllExport AsrChunk& operator=(AsrChunk&& x) noexcept;
|
|
121
|
+
|
|
122
|
+
/*!
|
|
123
|
+
* @brief Comparison operator.
|
|
124
|
+
* @param x booster_interface::msg::AsrChunk object to compare.
|
|
125
|
+
*/
|
|
126
|
+
eProsima_user_DllExport bool operator==(const AsrChunk& x) const;
|
|
127
|
+
|
|
128
|
+
/*!
|
|
129
|
+
* @brief Comparison operator.
|
|
130
|
+
* @param x booster_interface::msg::AsrChunk object to compare.
|
|
131
|
+
*/
|
|
132
|
+
eProsima_user_DllExport bool operator!=(const AsrChunk& x) const;
|
|
133
|
+
|
|
134
|
+
/*!
|
|
135
|
+
* @brief This function copies the value in member text
|
|
136
|
+
* @param _text New value to be copied in member text
|
|
137
|
+
*/
|
|
138
|
+
eProsima_user_DllExport void text(const std::string& _text);
|
|
139
|
+
|
|
140
|
+
/*!
|
|
141
|
+
* @brief This function moves the value in member text
|
|
142
|
+
* @param _text New value to be moved in member text
|
|
143
|
+
*/
|
|
144
|
+
eProsima_user_DllExport void text(std::string&& _text);
|
|
145
|
+
|
|
146
|
+
/*!
|
|
147
|
+
* @brief This function returns a constant reference to member text
|
|
148
|
+
* @return Constant reference to member text
|
|
149
|
+
*/
|
|
150
|
+
eProsima_user_DllExport const std::string& text() const;
|
|
151
|
+
|
|
152
|
+
/*!
|
|
153
|
+
* @brief This function returns a reference to member text
|
|
154
|
+
* @return Reference to member text
|
|
155
|
+
*/
|
|
156
|
+
eProsima_user_DllExport std::string& text();
|
|
157
|
+
|
|
158
|
+
private:
|
|
159
|
+
std::string m_text;
|
|
160
|
+
|
|
161
|
+
public:
|
|
162
|
+
typedef AsrChunk type;
|
|
163
|
+
|
|
164
|
+
eProsima_user_DllExport AsrChunk();
|
|
165
|
+
|
|
166
|
+
eProsima_user_DllExport ~AsrChunk() override;
|
|
167
|
+
|
|
168
|
+
eProsima_user_DllExport bool serialize(
|
|
169
|
+
void* data,
|
|
170
|
+
eprosima::fastrtps::rtps::SerializedPayload_t* payload) override {
|
|
171
|
+
return serialize(data, payload,
|
|
172
|
+
eprosima::fastdds::dds::DEFAULT_DATA_REPRESENTATION);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
eProsima_user_DllExport bool serialize(
|
|
176
|
+
void* data, eprosima::fastrtps::rtps::SerializedPayload_t* payload,
|
|
177
|
+
eprosima::fastdds::dds::DataRepresentationId_t data_representation)
|
|
178
|
+
override;
|
|
179
|
+
|
|
180
|
+
eProsima_user_DllExport bool deserialize(
|
|
181
|
+
eprosima::fastrtps::rtps::SerializedPayload_t* payload,
|
|
182
|
+
void* data) override;
|
|
183
|
+
|
|
184
|
+
eProsima_user_DllExport std::function<uint32_t()> getSerializedSizeProvider(
|
|
185
|
+
void* data) override {
|
|
186
|
+
return getSerializedSizeProvider(
|
|
187
|
+
data, eprosima::fastdds::dds::DEFAULT_DATA_REPRESENTATION);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
eProsima_user_DllExport std::function<uint32_t()> getSerializedSizeProvider(
|
|
191
|
+
void* data,
|
|
192
|
+
eprosima::fastdds::dds::DataRepresentationId_t data_representation)
|
|
193
|
+
override;
|
|
194
|
+
|
|
195
|
+
eProsima_user_DllExport bool getKey(
|
|
196
|
+
void* data, eprosima::fastrtps::rtps::InstanceHandle_t* ihandle,
|
|
197
|
+
bool force_md5 = false) override;
|
|
198
|
+
|
|
199
|
+
eProsima_user_DllExport void* createData() override;
|
|
200
|
+
|
|
201
|
+
eProsima_user_DllExport void deleteData(void* data) override;
|
|
202
|
+
|
|
203
|
+
#ifdef TOPIC_DATA_TYPE_API_HAS_IS_BOUNDED
|
|
204
|
+
eProsima_user_DllExport inline bool is_bounded() const override {
|
|
205
|
+
return false;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
#endif // TOPIC_DATA_TYPE_API_HAS_IS_BOUNDED
|
|
209
|
+
|
|
210
|
+
#ifdef TOPIC_DATA_TYPE_API_HAS_IS_PLAIN
|
|
211
|
+
eProsima_user_DllExport inline bool is_plain() const override {
|
|
212
|
+
return false;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
eProsima_user_DllExport inline bool is_plain(
|
|
216
|
+
eprosima::fastdds::dds::DataRepresentationId_t data_representation)
|
|
217
|
+
const override {
|
|
218
|
+
static_cast<void>(data_representation);
|
|
219
|
+
return false;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
#endif // TOPIC_DATA_TYPE_API_HAS_IS_PLAIN
|
|
223
|
+
|
|
224
|
+
#ifdef TOPIC_DATA_TYPE_API_HAS_CONSTRUCT_SAMPLE
|
|
225
|
+
eProsima_user_DllExport inline bool construct_sample(
|
|
226
|
+
void* memory) const override {
|
|
227
|
+
static_cast<void>(memory);
|
|
228
|
+
return false;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
#endif // TOPIC_DATA_TYPE_API_HAS_CONSTRUCT_SAMPLE
|
|
232
|
+
|
|
233
|
+
MD5 m_md5;
|
|
234
|
+
unsigned char* m_keyBuffer;
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
} // namespace msg
|
|
238
|
+
|
|
239
|
+
} // namespace booster_interface
|
|
240
|
+
|
|
241
|
+
#endif // _FAST_DDS_GENERATED_BOOSTER_INTERFACE_MSG_ASRCHUNK_H_
|
|
@@ -157,5 +157,68 @@ public:
|
|
|
157
157
|
public:
|
|
158
158
|
std::string msg_;
|
|
159
159
|
};
|
|
160
|
+
|
|
161
|
+
enum class LuiApiId {
|
|
162
|
+
kStartAsr = 1000,
|
|
163
|
+
kStopAsr = 1001,
|
|
164
|
+
kStartTts = 1050,
|
|
165
|
+
kStopTts = 1051,
|
|
166
|
+
kSendTtsText = 1052,
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
class LuiTtsConfig {
|
|
170
|
+
public:
|
|
171
|
+
LuiTtsConfig() = default;
|
|
172
|
+
LuiTtsConfig(const std::string &voice_type) :
|
|
173
|
+
voice_type_(voice_type) {
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
public:
|
|
177
|
+
void FromJson(nlohmann::json &json) {
|
|
178
|
+
try {
|
|
179
|
+
voice_type_ = json.at("voice_type").get<std::string>();
|
|
180
|
+
} catch (const nlohmann::json::exception &e) {
|
|
181
|
+
throw std::runtime_error("LuiTtsConfig JSON error: " + std::string(e.what()));
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
nlohmann::json ToJson() const {
|
|
186
|
+
return {
|
|
187
|
+
{"voice_type", voice_type_}};
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
public:
|
|
191
|
+
// The timbre (or tone color) can be adjusted, allowing for settings like male or female voices
|
|
192
|
+
// The following are examples of certain scenarios
|
|
193
|
+
// zh_male_wennuanahu_moon_bigtts : Supports Chinese and American English.
|
|
194
|
+
// zh_female_shuangkuaisisi_emo_v2_mars_bigtts : Supports Chinese and British English.
|
|
195
|
+
std::string voice_type_;
|
|
196
|
+
};
|
|
197
|
+
|
|
198
|
+
class LuiTtsParameter {
|
|
199
|
+
public:
|
|
200
|
+
LuiTtsParameter() = default;
|
|
201
|
+
LuiTtsParameter(const std::string &text) :
|
|
202
|
+
text_(text) {
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
public:
|
|
206
|
+
void FromJson(nlohmann::json &json) {
|
|
207
|
+
try {
|
|
208
|
+
text_ = json.at("text").get<std::string>();
|
|
209
|
+
} catch (const nlohmann::json::exception &e) {
|
|
210
|
+
throw std::runtime_error("LuiTtsParameter JSON error: " + std::string(e.what()));
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
nlohmann::json ToJson() const {
|
|
215
|
+
return {
|
|
216
|
+
{"text", text_}};
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
public:
|
|
220
|
+
std::string text_;
|
|
221
|
+
};
|
|
222
|
+
|
|
160
223
|
}
|
|
161
224
|
} // namespace booster::robot
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
#pragma once
|
|
2
|
+
|
|
3
|
+
#include <memory>
|
|
4
|
+
|
|
5
|
+
#include <booster/robot/rpc/rpc_client.hpp>
|
|
6
|
+
|
|
7
|
+
#include "api.hpp"
|
|
8
|
+
|
|
9
|
+
using namespace booster::robot;
|
|
10
|
+
|
|
11
|
+
namespace booster {
|
|
12
|
+
namespace robot {
|
|
13
|
+
|
|
14
|
+
class AiClient {
|
|
15
|
+
public:
|
|
16
|
+
AiClient() = default;
|
|
17
|
+
~AiClient() = default;
|
|
18
|
+
|
|
19
|
+
void Init();
|
|
20
|
+
|
|
21
|
+
void Init(const std::string &robot_name);
|
|
22
|
+
/**
|
|
23
|
+
* @brief Send API request to AI chat service
|
|
24
|
+
*
|
|
25
|
+
* @param api_id API_ID, you can find the API_ID in api.hpp
|
|
26
|
+
* @param param API parameter
|
|
27
|
+
*
|
|
28
|
+
* @return 0 if success, otherwise return error code
|
|
29
|
+
*/
|
|
30
|
+
int32_t SendApiRequest(AiApiId api_id, const std::string ¶m);
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* @brief Send API request to AI chat service with response
|
|
34
|
+
*
|
|
35
|
+
* @param api_id API_ID, you can find the API_ID in api.hpp
|
|
36
|
+
* @param param API parameter
|
|
37
|
+
* @param resp [out] A reference to a Response object where the API's response will be stored.
|
|
38
|
+
* This parameter is modified by the function to contain the result of the API call
|
|
39
|
+
*
|
|
40
|
+
* @return 0 if success, otherwise return error code
|
|
41
|
+
*/
|
|
42
|
+
int32_t SendApiRequestWithResponse(AiApiId api_id, const std::string ¶m, Response &resp);
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* @brief Start AI chat session with the robot
|
|
46
|
+
*
|
|
47
|
+
* This function sends a request to initiate an AI chat session on the robot.
|
|
48
|
+
*
|
|
49
|
+
* @param param The parameters required to start the AI chat, serialized to JSON.
|
|
50
|
+
*
|
|
51
|
+
* @return 0 if the request is successful, otherwise returns an error code.
|
|
52
|
+
*/
|
|
53
|
+
int32_t StartAiChat(const StartAiChatParameter ¶m) {
|
|
54
|
+
std::string body = param.ToJson().dump();
|
|
55
|
+
return SendApiRequest(AiApiId::kStartAiChat, body);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @brief Stop ai chat
|
|
60
|
+
*
|
|
61
|
+
* @return 0 if success, otherwise return error code
|
|
62
|
+
*/
|
|
63
|
+
|
|
64
|
+
int32_t StopAiChat() {
|
|
65
|
+
return SendApiRequest(AiApiId::kStopAiChat, "");
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @brief Send a speech command to the robot
|
|
70
|
+
*
|
|
71
|
+
* @param param The parameter object containing speech details
|
|
72
|
+
*
|
|
73
|
+
* @return 0 if success, otherwise return error code
|
|
74
|
+
*/
|
|
75
|
+
int32_t Speak(const SpeakParameter ¶m) {
|
|
76
|
+
std::string body = param.ToJson().dump();
|
|
77
|
+
return SendApiRequest(AiApiId::kSpeak, body);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* @brief Start face tracking
|
|
82
|
+
*
|
|
83
|
+
* @return 0 if success, otherwise return error code
|
|
84
|
+
*/
|
|
85
|
+
int32_t StartFaceTracking() {
|
|
86
|
+
return SendApiRequest(AiApiId::kStartFaceTracking, "");
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* @brief Start face tracking
|
|
91
|
+
*
|
|
92
|
+
* @return 0 if success, otherwise return error code
|
|
93
|
+
*/
|
|
94
|
+
int32_t StopFaceTracking() {
|
|
95
|
+
return SendApiRequest(AiApiId::kStopFaceTracking, "");
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
private:
|
|
99
|
+
std::shared_ptr<RpcClient> rpc_client_;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
class LuiClient {
|
|
103
|
+
public:
|
|
104
|
+
LuiClient() = default;
|
|
105
|
+
~LuiClient() = default;
|
|
106
|
+
|
|
107
|
+
void Init();
|
|
108
|
+
|
|
109
|
+
void Init(const std::string &robot_name);
|
|
110
|
+
/**
|
|
111
|
+
* @brief Send API request to LUI service
|
|
112
|
+
*
|
|
113
|
+
* @param api_id API_ID, you can find the API_ID in api.hpp
|
|
114
|
+
* @param param API parameter
|
|
115
|
+
*
|
|
116
|
+
* @return 0 if success, otherwise return error code
|
|
117
|
+
*/
|
|
118
|
+
int32_t SendApiRequest(LuiApiId api_id, const std::string ¶m);
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* @brief Send API request to LUI service with response
|
|
122
|
+
*
|
|
123
|
+
* @param api_id API_ID, you can find the API_ID in api.hpp
|
|
124
|
+
* @param param API parameter
|
|
125
|
+
* @param resp [out] A reference to a Response object where the API's response will be stored.
|
|
126
|
+
* This parameter is modified by the function to contain the result of the API call
|
|
127
|
+
*
|
|
128
|
+
* @return 0 if success, otherwise return error code
|
|
129
|
+
*/
|
|
130
|
+
int32_t SendApiRequestWithResponse(LuiApiId api_id, const std::string ¶m, Response &resp);
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @brief Start ASR service
|
|
134
|
+
*
|
|
135
|
+
* This function sends a request to initiate an ASR service on the robot.
|
|
136
|
+
*
|
|
137
|
+
* @return 0 if the request is successful, otherwise returns an error code.
|
|
138
|
+
*/
|
|
139
|
+
int32_t StartAsr() {
|
|
140
|
+
return SendApiRequest(LuiApiId::kStartAsr, "");
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @brief Stop ASR service
|
|
145
|
+
*
|
|
146
|
+
* This function sends a request to stop the ASR service on the robot.
|
|
147
|
+
*
|
|
148
|
+
* @return 0 if the request is successful, otherwise returns an error code.
|
|
149
|
+
*/
|
|
150
|
+
int32_t StopAsr() {
|
|
151
|
+
return SendApiRequest(LuiApiId::kStopAsr, "");
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* @brief Start TTS service
|
|
156
|
+
*
|
|
157
|
+
* This function sends a request to initiate a TTS service on the robot.
|
|
158
|
+
*
|
|
159
|
+
* @param config The configuration object containing TTS details
|
|
160
|
+
*
|
|
161
|
+
* @return 0 if the request is successful, otherwise returns an error code.
|
|
162
|
+
*/
|
|
163
|
+
int32_t StartTts(const LuiTtsConfig &config) {
|
|
164
|
+
std::string body = config.ToJson().dump();
|
|
165
|
+
return SendApiRequest(LuiApiId::kStartTts, body);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* @brief Stop TTS service
|
|
170
|
+
*
|
|
171
|
+
* This function sends a request to stop the TTS service on the robot.
|
|
172
|
+
*
|
|
173
|
+
* @return 0 if the request is successful, otherwise returns an error code.
|
|
174
|
+
*/
|
|
175
|
+
int32_t StopTts() {
|
|
176
|
+
return SendApiRequest(LuiApiId::kStopTts, "");
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @brief Send TTS text to the robot
|
|
181
|
+
*
|
|
182
|
+
* This function sends a request to the robot to synthesize and play the specified text using TTS.
|
|
183
|
+
*
|
|
184
|
+
* @param param The parameter object containing the text to be synthesized.
|
|
185
|
+
*
|
|
186
|
+
* @return 0 if the request is successful, otherwise returns an error code.
|
|
187
|
+
*/
|
|
188
|
+
int32_t SendTtsText(const LuiTtsParameter ¶m) {
|
|
189
|
+
std::string body = param.ToJson().dump();
|
|
190
|
+
return SendApiRequest(LuiApiId::kSendTtsText, body);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
private:
|
|
194
|
+
std::shared_ptr<RpcClient> rpc_client_;
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
}
|
|
198
|
+
} // namespace booster::robot
|