Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev tak #176

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: adding custom message for robot query
adityarauniyar authored and andrewjong committed Dec 11, 2024
commit ab8acc633d5dc3dbbf818933a4d6ed639366141c
4 changes: 3 additions & 1 deletion common/ros_packages/airstack_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ endif()
find_package(ament_cmake REQUIRED)
find_package(std_msgs REQUIRED)
find_package(geometry_msgs REQUIRED)
find_package(sensor_msgs REQUIRED)
find_package(diagnostic_msgs REQUIRED)
find_package(rosidl_default_generators REQUIRED)

@@ -22,10 +23,11 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/BeliefMapData.msg"
"msg/SearchPrior.msg"
"msg/TaskAssignment.msg"
"msg/query/TextQueryResponse.msg"
"srv/RobotCommand.srv"
"srv/TrajectoryMode.srv"
"srv/TakeoffLandingCommand.srv"
DEPENDENCIES std_msgs geometry_msgs diagnostic_msgs
DEPENDENCIES std_msgs geometry_msgs sensor_msgs diagnostic_msgs
)

if(BUILD_TESTING)
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# This message type is used for the response of a text query from a robot semantic query

std_msgs/Header header # Header for the message, usually contains timestamp and frame_id
string tag_name # The tag associated with the query or response
sensor_msgs/NavSatFix[] geofence # Array of GPS fixes (NavSatFix) representing the geofence
5 changes: 3 additions & 2 deletions common/ros_packages/airstack_msgs/package.xml
Original file line number Diff line number Diff line change
@@ -12,11 +12,12 @@
<depend>std_msgs</depend>
<depend>geometry_msgs</depend>
<depend>diagnostic_msgs</depend>

<depend>sensor_msgs</depend>

<buildtool_depend>rosidl_default_generators</buildtool_depend>
<exec_depend>rosidl_default_runtime</exec_depend>
<member_of_group>rosidl_interface_packages</member_of_group>

<test_depend>ament_lint_auto</test_depend>
<test_depend>ament_lint_common</test_depend>