drive_state.proto 367 B

1234567891011121314151617
  1. syntax = "proto2";
  2. package apollo.common;
  3. // This is the engage advice that published by critical runtime modules.
  4. message EngageAdvice {
  5. enum Advice {
  6. UNKNOWN = 0;
  7. DISALLOW_ENGAGE = 1;
  8. READY_TO_ENGAGE = 2;
  9. KEEP_ENGAGED = 3;
  10. PREPARE_DISENGAGE = 4;
  11. }
  12. optional Advice advice = 1 [default = DISALLOW_ENGAGE];
  13. optional string reason = 2;
  14. }