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

feat(logpacker): add rosbag recoding api #114

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions tier4_external_api_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
msg/Operator.msg
msg/RosbagCopyStatus.msg
msg/RosbagLoggingMode.msg
msg/RosbagRecordStatus.msg
msg/ResponseStatus.msg
msg/Route.msg
msg/RouteSection.msg
Expand Down Expand Up @@ -65,6 +66,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
srv/SetEmergency.srv
srv/SetPose.srv
srv/SetRosbagLoggingMode.srv
srv/SetRosbagRecord.srv
srv/SetRoute.srv
srv/SetService.srv
srv/SetVelocityLimit.srv
Expand Down
10 changes: 10 additions & 0 deletions tier4_external_api_msgs/msg/RosbagRecordStatus.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# constants
uint8 INITIALIZING=0
uint8 WAITING_VEHICLE_INFO=1
uint8 READY=2
uint8 RECORDING=3
uint8 ERROR=4
ito-san marked this conversation as resolved.
Show resolved Hide resolved

# fields
uint8 status
string message
3 changes: 3 additions & 0 deletions tier4_external_api_msgs/srv/SetRosbagRecord.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bool record
---
tier4_external_api_msgs/ResponseStatus status
Loading