pad_msg.proto 364 B

123456789101112131415161718
  1. syntax = "proto2";
  2. package apollo.control;
  3. import "modules/common_msgs/basic_msgs/header.proto";
  4. enum DrivingAction {
  5. START = 1;
  6. RESET = 2;
  7. VIN_REQ = 3;
  8. };
  9. message PadMessage {
  10. // control mode, set mode according to low level definition
  11. optional apollo.common.Header header = 1;
  12. // action in the driving_mode
  13. optional DrivingAction action = 2;
  14. }