forked from KKalem/smarc2
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathTopics.msg
More file actions
36 lines (29 loc) · 1.32 KB
/
Topics.msg
File metadata and controls
36 lines (29 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This is a file that defines all the topics of drone.
# The goal is to have one location that all cpp/py scripts
# can easily access and thus avoid having 100 parameters for topics all
# over the place, repeated for all subs/pubs...
# It is assumed that the nodes will namespace as needed.
####################
# Actuator commands
####################
string PROP1_CMD_TOPIC = 'core/prop_1/cmd'
string PROP2_CMD_TOPIC = 'core/prop_2/cmd'
string PROP3_CMD_TOPIC = 'core/prop_3/cmd'
string PROP4_CMD_TOPIC = 'core/prop_4/cmd'
string DRONE_ODOM_GT_TOPIC = 'odom_gt'
string CAMERA_DATA_TOPIC = 'core/fpcamera/image'
string CAMERA_COMPRESSED_DATA_TOPIC = 'core/fpcamera/image_compressed'
string CAMERA_INFO_TOPIC = 'core/fpcamera/cam_info'
string PROP1_FB_TOPIC = 'core/prop_1/feedback'
string PROP2_FB_TOPIC = 'core/prop_2/feedback'
string PROP3_FB_TOPIC = 'core/prop_3/feedback'
string PROP4_FB_TOPIC = 'core/prop_4/feedback'
string IMU_TOPIC = 'core/imu'
string GPS_TOPIC = 'core/gps'
string RANGE_TOPIC = 'core/range'
string DEPTH_TOPIC = 'core/depth'
string DR_POSITION_TOPIC = 'est_position'
string AUV_RELATIVE_POSITION_TOPIC = 'auv/estimated_relative_position'
string BUOY_DETECTOR_ESTIMATE_TOPIC = 'auv/buoy_est'
string SAM_LOWEST_POINT_ESTIMATE_TOPIC = 'auv/sam_lowest_est'
string CAMERA_PROCESSED_TOPIC = 'core/fpcamera/image_processed'