Skip to content

Commit 9c5501d

Browse files
dhruvtyaDhruv Tyagi
andauthored
Reverted deletion of ManageMapDataRecording (#4)
Co-authored-by: Dhruv Tyagi <dhruv@polymathrobotics.com>
1 parent 5a18634 commit 9c5501d

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
5555
"srv/ListReferenceTargets.srv"
5656
"srv/GenerateOfflineMap.srv"
5757
"srv/LoadMap.srv"
58+
"srv/ManageMapDataRecording.srv"
5859
"srv/StartBagRecording.srv"
5960
"srv/StopBagRecording.srv"
6061
"srv/GetBagRecordingStatus.srv"

srv/ManageMapDataRecording.srv

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## Request
2+
3+
# Request Type (Enum)
4+
#
5+
# STOP: Stop recording map data
6+
# START: Start recording map data
7+
8+
uint8 STOP=0
9+
uint8 START=1
10+
11+
# Recording request type
12+
# (See available options above)
13+
#
14+
# default: STOP
15+
uint8 request_type
16+
---
17+
## Response
18+
19+
# Indicate successful run of service
20+
bool success
21+
22+
# Data file name
23+
string file_name
24+
25+
# Error messages
26+
string message

0 commit comments

Comments
 (0)