Skip to content

Commit

Permalink
Tools : Added custom ROS-2 serivce definition for switching drive modes
Browse files Browse the repository at this point in the history
  • Loading branch information
arshPratap committed Aug 28, 2023
1 parent cc3fe56 commit 30c3281
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions Tools/ros2/ardupilot_msgs/CMakeLists.txt
Expand Up @@ -12,6 +12,7 @@ find_package(rosidl_default_generators REQUIRED)

rosidl_generate_interfaces(${PROJECT_NAME}
"srv/ArmMotors.srv"
"srv/ModeSwitch.srv"
ADD_LINTER_TESTS
)

Expand Down
15 changes: 15 additions & 0 deletions Tools/ros2/ardupilot_msgs/srv/ModeSwitch.srv
@@ -0,0 +1,15 @@

# This service requests the vehicle to switch its drive/flight mode

# mode : Set the value to the drive/flight mode to be used
# Copter : https://github.com/ArduPilot/ardupilot/blob/master/ArduCopter/mode.h
# Rover : https://github.com/ArduPilot/ardupilot/blob/master/Rover/mode.h
# Plane : https://github.com/ArduPilot/ardupilot/blob/master/ArduPlane/mode.h

uint8 mode
---
# status : True if the request for mode switch was successful, False otherwise
# curr_mode : Returns the code for the current drive/flight mode , after the processing the request

bool status
uint8 curr_mode

0 comments on commit 30c3281

Please sign in to comment.