Skip to content

Commit

Permalink
added assisted teleop messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jmastrangelo-cpr committed Feb 6, 2024
1 parent 184df67 commit 6e95d54
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,17 @@ find_package(catkin REQUIRED

add_message_files(
FILES
AssistedTeleopState.msg
ObstacleMap.msg
Safety.msg
WatchdogStatus.msg
)

add_service_files(
FILES
BypassProtection.srv
)

generate_messages(
DEPENDENCIES
std_msgs
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Assisted teleoperation message indicating the current state of the protection

bool bypassed
bool collision_imminent
bool platform_stopped
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Assisted teleoperation message indicating the threat level of obstacles surrounidng the platform

float32[] threat_level
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Should protection of all inputs be bypassed?
bool bypass

---

# True if we successfully bypassed the protection of the inputs.
# False if there was an error
bool success
string message

0 comments on commit 6e95d54

Please sign in to comment.