Skip to content

Commit

Permalink
feat: add stop_move on collision
Browse files Browse the repository at this point in the history
  • Loading branch information
rise0chen committed Sep 7, 2023
1 parent 95a6a3a commit b95aeff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion safety.proto
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ enum CollisionDetectorAction {
ESTOP = 0;
// 碰撞后暂停
PAUSE = 1;
// 碰撞后停止运动
STOP_MOVE = 2;
// 关闭碰撞监测
NONE = 2;
NONE = 99;
}
message CollisionDetector {
// 碰撞后执行操作
Expand Down

0 comments on commit b95aeff

Please sign in to comment.