apollo-modules 7.0.1__tar.gz → 9.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1047) hide show
  1. apollo_modules-9.0.0/PKG-INFO +56 -0
  2. apollo_modules-9.0.0/README.md +42 -0
  3. apollo_modules-9.0.0/apollo_modules/modules/audio/proto/audio_conf_pb2.py +44 -0
  4. apollo_modules-9.0.0/apollo_modules/modules/bridge/proto/udp_bridge_remote_info_pb2.py +44 -0
  5. apollo_modules-9.0.0/apollo_modules/modules/canbus/proto/canbus_conf_pb2.py +36 -0
  6. apollo_modules-9.0.0/apollo_modules/modules/canbus/proto/vehicle_parameter_pb2.py +36 -0
  7. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/ch/proto/ch_pb2.py +348 -0
  8. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/devkit/proto/devkit_pb2.py +372 -0
  9. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/ge3/proto/ge3_pb2.py +414 -0
  10. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/gem/proto/gem_pb2.py +437 -0
  11. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/lexus/proto/lexus_pb2.py +736 -0
  12. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/lincoln/proto/lincoln_pb2.py +223 -0
  13. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/neolix_edu/proto/neolix_edu_pb2.py +359 -0
  14. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/transit/proto/transit_pb2.py +194 -0
  15. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/wey/proto/wey_pb2.py +388 -0
  16. apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/zhongyun/proto/zhongyun_pb2.py +191 -0
  17. apollo_modules-9.0.0/apollo_modules/modules/common/adapters/proto/adapter_config_pb2.py +54 -0
  18. apollo_modules-9.0.0/apollo_modules/modules/common/latency_recorder/proto/latency_record_pb2.py +86 -0
  19. apollo_modules-9.0.0/apollo_modules/modules/common/util/testdata/simple_pb2.py +45 -0
  20. apollo_modules-9.0.0/apollo_modules/modules/common/vehicle_model/proto/vehicle_model_config_pb2.py +67 -0
  21. apollo_modules-9.0.0/apollo_modules/modules/common/vehicle_state/proto/vehicle_state_pb2.py +36 -0
  22. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/audio_msgs/audio_common_pb2.py +50 -0
  23. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/audio_msgs/audio_event_pb2.py +37 -0
  24. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/audio_msgs/audio_pb2.py +37 -0
  25. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/direction_pb2.py +37 -0
  26. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/drive_event_pb2.py +39 -0
  27. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/drive_state_pb2.py +37 -0
  28. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/error_code_pb2.py +78 -0
  29. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/geometry_pb2.py +84 -0
  30. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/header_pb2.py +35 -0
  31. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/pnc_point_pb2.py +124 -0
  32. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/vehicle_id_pb2.py +34 -0
  33. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs/vehicle_signal_pb2.py +37 -0
  34. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/chassis_msgs/chassis_detail_pb2.py +611 -0
  35. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/chassis_msgs/chassis_pb2.py +140 -0
  36. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/config_msgs/vehicle_config_pb2.py +92 -0
  37. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/control_msgs/control_cmd_pb2.py +136 -0
  38. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/control_msgs/input_debug_pb2.py +35 -0
  39. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/control_msgs/pad_msg_pb2.py +43 -0
  40. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/dreamview_msgs/chart_pb2.py +112 -0
  41. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/dreamview_msgs/hmi_config_pb2.py +127 -0
  42. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/dreamview_msgs/hmi_mode_pb2.py +214 -0
  43. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/dreamview_msgs/hmi_status_pb2.py +195 -0
  44. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/dreamview_msgs/simulation_world_pb2.py +207 -0
  45. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/drivers_msgs/can_card_parameter_pb2.py +49 -0
  46. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/action_command_pb2.py +50 -0
  47. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/chassis_command_pb2.py +37 -0
  48. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/command_status_pb2.py +54 -0
  49. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/free_space_command_pb2.py +36 -0
  50. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/geometry_pb2.py +54 -0
  51. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/lane_follow_command_pb2.py +37 -0
  52. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/lane_segment_pb2.py +34 -0
  53. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/path_follow_command_pb2.py +56 -0
  54. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/speed_command_pb2.py +35 -0
  55. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs/valet_parking_command_pb2.py +37 -0
  56. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/guardian_msgs/guardian_pb2.py +36 -0
  57. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/localization_msgs/gps_pb2.py +36 -0
  58. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/localization_msgs/imu_pb2.py +36 -0
  59. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/localization_msgs/localization_pb2.py +73 -0
  60. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/localization_msgs/localization_status_pb2.py +175 -0
  61. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/localization_msgs/pose_pb2.py +35 -0
  62. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_clear_area_pb2.py +36 -0
  63. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_crosswalk_pb2.py +36 -0
  64. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_geometry_pb2.py +65 -0
  65. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_id_pb2.py +34 -0
  66. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_junction_pb2.py +39 -0
  67. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_lane_pb2.py +78 -0
  68. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_overlap_pb2.py +166 -0
  69. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_parking_space_pb2.py +46 -0
  70. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_pb2.py +67 -0
  71. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_pnc_junction_pb2.py +59 -0
  72. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_road_pb2.py +92 -0
  73. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_rsu_pb2.py +35 -0
  74. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_signal_pb2.py +66 -0
  75. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_speed_bump_pb2.py +36 -0
  76. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_speed_control_pb2.py +45 -0
  77. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_stop_sign_pb2.py +39 -0
  78. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs/map_yield_sign_pb2.py +36 -0
  79. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/monitor_msgs/monitor_log_pb2.py +51 -0
  80. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/monitor_msgs/smart_recorder_status_pb2.py +43 -0
  81. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/monitor_msgs/system_status_pb2.py +110 -0
  82. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/perception_msgs/perception_benchmark_pb2.py +47 -0
  83. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/perception_msgs/perception_camera_pb2.py +127 -0
  84. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/perception_msgs/perception_lane_pb2.py +36 -0
  85. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/perception_msgs/perception_obstacle_pb2.py +166 -0
  86. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/perception_msgs/traffic_light_detection_pb2.py +73 -0
  87. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/planning_msgs/decision_pb2.py +339 -0
  88. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/planning_msgs/navigation_pb2.py +72 -0
  89. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/planning_msgs/pad_msg_pb2.py +38 -0
  90. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/planning_msgs/planning_command_pb2.py +47 -0
  91. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/planning_msgs/planning_internal_pb2.py +344 -0
  92. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/planning_msgs/planning_pb2.py +110 -0
  93. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/planning_msgs/sl_boundary_pb2.py +35 -0
  94. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/prediction_msgs/feature_pb2.py +146 -0
  95. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/prediction_msgs/lane_graph_pb2.py +114 -0
  96. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/prediction_msgs/prediction_obstacle_pb2.py +75 -0
  97. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/prediction_msgs/prediction_point_pb2.py +44 -0
  98. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/prediction_msgs/scenario_pb2.py +37 -0
  99. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/routing_msgs/geometry_pb2.py +90 -0
  100. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/routing_msgs/poi_pb2.py +66 -0
  101. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/routing_msgs/routing_pb2.py +50 -0
  102. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/conti_radar_pb2.py +81 -0
  103. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/delphi_esr_pb2.py +422 -0
  104. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/gnss_best_pose_pb2.py +97 -0
  105. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/gnss_pb2.py +49 -0
  106. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/gnss_raw_observation_pb2.py +124 -0
  107. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/heading_pb2.py +35 -0
  108. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/imu_pb2.py +36 -0
  109. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/ins_pb2.py +59 -0
  110. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/mobileye_pb2.py +175 -0
  111. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/oculii_radar_pb2.py +69 -0
  112. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/pointcloud_pb2.py +45 -0
  113. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/racobit_radar_pb2.py +81 -0
  114. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/radar_pb2.py +66 -0
  115. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/radarpointcloud_pb2.py +45 -0
  116. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/sensor_image_pb2.py +97 -0
  117. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/smartereye_pb2.py +164 -0
  118. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs/ultrasonic_radar_pb2.py +35 -0
  119. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/simulation_msgs/agent_pb2.py +60 -0
  120. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/simulation_msgs/grading_condition_pb2.py +363 -0
  121. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/simulation_msgs/grading_metric_pb2.py +45 -0
  122. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/simulation_msgs/scenario_pb2.py +112 -0
  123. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/storytelling_msgs/story_pb2.py +98 -0
  124. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/task_manager_msgs/task_manager_pb2.py +84 -0
  125. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/transform_msgs/transform_pb2.py +56 -0
  126. apollo_modules-9.0.0/apollo_modules/modules/common_msgs/v2x_msgs/v2x_traffic_light_pb2.py +62 -0
  127. apollo_modules-9.0.0/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection2d_pb2.py +65 -0
  128. apollo_modules-9.0.0/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection2darray_pb2.py +36 -0
  129. apollo_modules-9.0.0/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection3d_pb2.py +57 -0
  130. apollo_modules-9.0.0/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection3darray_pb2.py +36 -0
  131. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/calibration_table_pb2.py +44 -0
  132. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/gain_scheduler_conf_pb2.py +54 -0
  133. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/leadlag_conf_pb2.py +34 -0
  134. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/local_view_pb2.py +39 -0
  135. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/mrac_conf_pb2.py +34 -0
  136. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/pid_conf_pb2.py +34 -0
  137. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/pipeline_pb2.py +35 -0
  138. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/plugin_declare_info_pb2.py +34 -0
  139. apollo_modules-9.0.0/apollo_modules/modules/control/control_component/proto/preprocessor_pb2.py +38 -0
  140. apollo_modules-9.0.0/apollo_modules/modules/control/controllers/demo_control_task/proto/demo_control_task_conf_pb2.py +34 -0
  141. apollo_modules-9.0.0/apollo_modules/modules/control/controllers/lat_based_lqr_controller/proto/lat_based_lqr_controller_conf_pb2.py +37 -0
  142. apollo_modules-9.0.0/apollo_modules/modules/control/controllers/lon_based_pid_controller/proto/lon_based_pid_controller_conf_pb2.py +46 -0
  143. apollo_modules-9.0.0/apollo_modules/modules/control/controllers/mpc_controller/proto/mpc_controller_pb2.py +47 -0
  144. apollo_modules-9.0.0/apollo_modules/modules/data/proto/frame_pb2.py +97 -0
  145. apollo_modules-9.0.0/apollo_modules/modules/data/proto/static_info_pb2.py +138 -0
  146. apollo_modules-9.0.0/apollo_modules/modules/data/tools/smart_recorder/proto/smart_recorder_triggers_pb2.py +54 -0
  147. apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/sim_control_manager/proto/dynamic_model_conf_pb2.py +34 -0
  148. apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/sim_control_manager/proto/fnn_model_pb2.py +67 -0
  149. apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/sim_control_manager/proto/sim_control_internal_pb2.py +45 -0
  150. apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/teleop/proto/daemon_cmd_pb2.py +35 -0
  151. apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/teleop/proto/daemon_rpt_pb2.py +35 -0
  152. apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/teleop/proto/modem_info_pb2.py +35 -0
  153. apollo_modules-9.0.0/apollo_modules/modules/dreamview/proto/camera_update_pb2.py +38 -0
  154. apollo_modules-9.0.0/apollo_modules/modules/dreamview/proto/data_collection_table_pb2.py +98 -0
  155. apollo_modules-9.0.0/apollo_modules/modules/dreamview/proto/dv_plugin_msg_pb2.py +38 -0
  156. apollo_modules-9.0.0/apollo_modules/modules/dreamview/proto/plugin_config_pb2.py +47 -0
  157. apollo_modules-9.0.0/apollo_modules/modules/dreamview/proto/point_cloud_pb2.py +36 -0
  158. apollo_modules-9.0.0/apollo_modules/modules/dreamview/proto/preprocess_table_pb2.py +82 -0
  159. apollo_modules-9.0.0/apollo_modules/modules/dreamview/proto/record_pb2.py +44 -0
  160. apollo_modules-9.0.0/apollo_modules/modules/dreamview/proto/scenario_pb2.py +45 -0
  161. apollo_modules-9.0.0/apollo_modules/modules/dreamview_plus/proto/data_handler_pb2.py +87 -0
  162. apollo_modules-9.0.0/apollo_modules/modules/dreamview_plus/proto/obstacle_pb2.py +48 -0
  163. apollo_modules-9.0.0/apollo_modules/modules/drivers/camera/proto/config_pb2.py +71 -0
  164. apollo_modules-9.0.0/apollo_modules/modules/drivers/canbus/proto/sensor_canbus_conf_pb2.py +35 -0
  165. apollo_modules-9.0.0/apollo_modules/modules/drivers/gnss/proto/config_pb2.py +140 -0
  166. apollo_modules-9.0.0/apollo_modules/modules/drivers/gnss/proto/gnss_status_pb2.py +61 -0
  167. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/lslidar/proto/config_pb2.py +45 -0
  168. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/lslidar/proto/lslidar_pb2.py +66 -0
  169. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto/config_pb2.py +38 -0
  170. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto/hesai_config_pb2.py +35 -0
  171. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto/hesai_pb2.py +53 -0
  172. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto/lidar_parameter_pb2.py +40 -0
  173. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto/robosense_config_pb2.py +34 -0
  174. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto/robosense_pb2.py +45 -0
  175. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto/velodyne_config_pb2.py +55 -0
  176. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto/velodyne_pb2.py +65 -0
  177. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/robosense/proto/lidars_filter_config_pb2.py +44 -0
  178. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/robosense/proto/sensor_suteng_conf_pb2.py +35 -0
  179. apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/robosense/proto/sensor_suteng_pb2.py +64 -0
  180. apollo_modules-9.0.0/apollo_modules/modules/drivers/microphone/proto/audio_pb2.py +46 -0
  181. apollo_modules-9.0.0/apollo_modules/modules/drivers/microphone/proto/microphone_config_pb2.py +46 -0
  182. apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/conti_radar/proto/conti_radar_conf_pb2.py +56 -0
  183. apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/oculii_radar/proto/oculii_radar_conf_pb2.py +34 -0
  184. apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/racobit_radar/proto/racobit_radar_conf_pb2.py +56 -0
  185. apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/ultrasonic_radar/proto/ultrasonic_radar_conf_pb2.py +45 -0
  186. apollo_modules-9.0.0/apollo_modules/modules/drivers/smartereye/proto/config_pb2.py +60 -0
  187. apollo_modules-9.0.0/apollo_modules/modules/drivers/tools/image_decompress/proto/config_pb2.py +34 -0
  188. apollo_modules-9.0.0/apollo_modules/modules/drivers/video/proto/video_h265cfg_pb2.py +45 -0
  189. apollo_modules-9.0.0/apollo_modules/modules/external_command/command_processor/action_command_processor/proto/action_command_config_pb2.py +34 -0
  190. apollo_modules-9.0.0/apollo_modules/modules/external_command/command_processor/command_processor_base/proto/command_processor_config_pb2.py +34 -0
  191. apollo_modules-9.0.0/apollo_modules/modules/external_command/external_command_demo/proto/demo_config_pb2.py +34 -0
  192. apollo_modules-9.0.0/apollo_modules/modules/external_command/external_command_demo/proto/sweeper_custom_command_pb2.py +34 -0
  193. apollo_modules-9.0.0/apollo_modules/modules/external_command/old_routing_adapter/proto/old_routing_adapter_pb2.py +34 -0
  194. apollo_modules-9.0.0/apollo_modules/modules/external_command/process_component/proto/process_component_config_pb2.py +34 -0
  195. apollo_modules-9.0.0/apollo_modules/modules/guardian/proto/guardian_conf_pb2.py +34 -0
  196. apollo_modules-9.0.0/apollo_modules/modules/localization/proto/gnss_pnt_result_pb2.py +56 -0
  197. apollo_modules-9.0.0/apollo_modules/modules/localization/proto/localization_config_pb2.py +37 -0
  198. apollo_modules-9.0.0/apollo_modules/modules/localization/proto/measure_pb2.py +44 -0
  199. apollo_modules-9.0.0/apollo_modules/modules/localization/proto/rtk_config_pb2.py +34 -0
  200. apollo_modules-9.0.0/apollo_modules/modules/localization/proto/sins_pva_pb2.py +38 -0
  201. apollo_modules-9.0.0/apollo_modules/modules/map/relative_map/proto/navigator_config_pb2.py +44 -0
  202. apollo_modules-9.0.0/apollo_modules/modules/map/relative_map/proto/relative_map_config_pb2.py +57 -0
  203. apollo_modules-9.0.0/apollo_modules/modules/map/tools/map_datachecker/proto/collection_check_message_pb2.py +189 -0
  204. apollo_modules-9.0.0/apollo_modules/modules/map/tools/map_datachecker/proto/collection_error_code_pb2.py +54 -0
  205. apollo_modules-9.0.0/apollo_modules/modules/map/tools/map_datachecker/proto/collection_service_pb2.py +28 -0
  206. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_bev/detector/petr/proto/model_param_pb2.py +36 -0
  207. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_bev/proto/camera_detection_bev_pb2.py +55 -0
  208. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolo/proto/model_param_pb2.py +56 -0
  209. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolox3d/proto/model_param_pb2.py +66 -0
  210. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage/proto/camera_detection_multi_stage_pb2.py +65 -0
  211. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage/detector/caddn/proto/model_param_pb2.py +36 -0
  212. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage/detector/smoke/proto/model_param_pb2.py +56 -0
  213. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage/proto/camera_detection_single_stage_pb2.py +55 -0
  214. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation/proto/camera_location_estimation_pb2.py +45 -0
  215. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation/transformer/multicue/proto/multicue_pb2.py +34 -0
  216. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation/transformer/singlestage/proto/singlestage_pb2.py +34 -0
  217. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_refinement/location_refiner/proto/location_refiner_pb2.py +34 -0
  218. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_refinement/proto/camera_location_refinement_pb2.py +65 -0
  219. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_tracking/feature_extract/proto/model_param_pb2.py +36 -0
  220. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_tracking/proto/camera_tracking_component_pb2.py +35 -0
  221. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_tracking/proto/omt_pb2.py +75 -0
  222. apollo_modules-9.0.0/apollo_modules/modules/perception/camera_tracking/proto/tracking_feature_pb2.py +67 -0
  223. apollo_modules-9.0.0/apollo_modules/modules/perception/common/camera/common/proto/object_template_meta_schema_pb2.py +54 -0
  224. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/__init__.py +0 -0
  225. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/__init__.py +0 -0
  226. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/ground_service/__init__.py +0 -0
  227. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/ground_service/proto/__init__.py +0 -0
  228. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/ground_service/proto/ground_service_config_pb2.py +34 -0
  229. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/proto/__init__.py +0 -0
  230. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/proto/scene_manager_config_pb2.py +34 -0
  231. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/roi_service/__init__.py +0 -0
  232. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/roi_service/proto/__init__.py +0 -0
  233. apollo_modules-9.0.0/apollo_modules/modules/perception/common/lidar/scene_manager/roi_service/proto/roi_service_pb2.py +34 -0
  234. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/__init__.py +0 -0
  235. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/model_info_pb2.py +82 -0
  236. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/model_process_pb2.py +84 -0
  237. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/motion_service_pb2.py +55 -0
  238. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/perception_config_schema_pb2.py +154 -0
  239. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/perception_ultrasonic_pb2.py +48 -0
  240. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/plugin_param_pb2.py +34 -0
  241. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/rt_pb2.py +1179 -0
  242. apollo_modules-9.0.0/apollo_modules/modules/perception/common/proto/sensor_meta_schema_pb2.py +50 -0
  243. apollo_modules-9.0.0/apollo_modules/modules/perception/lane_detection/__init__.py +0 -0
  244. apollo_modules-9.0.0/apollo_modules/modules/perception/lane_detection/proto/__init__.py +0 -0
  245. apollo_modules-9.0.0/apollo_modules/modules/perception/lane_detection/proto/darkSCNN_pb2.py +54 -0
  246. apollo_modules-9.0.0/apollo_modules/modules/perception/lane_detection/proto/darkSCNN_postprocessor_pb2.py +34 -0
  247. apollo_modules-9.0.0/apollo_modules/modules/perception/lane_detection/proto/denseline_pb2.py +54 -0
  248. apollo_modules-9.0.0/apollo_modules/modules/perception/lane_detection/proto/denseline_postprocessor_pb2.py +34 -0
  249. apollo_modules-9.0.0/apollo_modules/modules/perception/lane_detection/proto/lane_perception_component_pb2.py +35 -0
  250. apollo_modules-9.0.0/apollo_modules/modules/perception/lane_detection/proto/perception_pb2.py +75 -0
  251. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/__init__.py +0 -0
  252. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/__init__.py +0 -0
  253. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/center_point_detection/__init__.py +0 -0
  254. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/center_point_detection/proto/__init__.py +0 -0
  255. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/center_point_detection/proto/model_param_pb2.py +36 -0
  256. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/cnn_segmentation/__init__.py +0 -0
  257. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/cnn_segmentation/proto/__init__.py +0 -0
  258. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/cnn_segmentation/proto/model_param_pb2.py +56 -0
  259. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/mask_pillars_detection/__init__.py +0 -0
  260. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/mask_pillars_detection/proto/__init__.py +0 -0
  261. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/mask_pillars_detection/proto/model_param_pb2.py +36 -0
  262. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/point_pillars_detection/__init__.py +0 -0
  263. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/point_pillars_detection/proto/__init__.py +0 -0
  264. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/detector/point_pillars_detection/proto/model_param_pb2.py +36 -0
  265. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/proto/__init__.py +0 -0
  266. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection/proto/lidar_detection_component_config_pb2.py +35 -0
  267. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/__init__.py +0 -0
  268. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/__init__.py +0 -0
  269. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/__init__.py +0 -0
  270. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/background_filter_config_pb2.py +34 -0
  271. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/filter_bank_config_pb2.py +35 -0
  272. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/roi_boundary_filter_config_pb2.py +34 -0
  273. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/strategy_filter_config_pb2.py +34 -0
  274. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/proto/__init__.py +0 -0
  275. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_detection_filter/proto/lidar_detection_filter_component_config_pb2.py +35 -0
  276. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_output/__init__.py +0 -0
  277. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_output/proto/__init__.py +0 -0
  278. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_output/proto/lidar_output_component_config_pb2.py +34 -0
  279. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/__init__.py +0 -0
  280. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/classifier/__init__.py +0 -0
  281. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/classifier/fused_classifier/__init__.py +0 -0
  282. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/classifier/fused_classifier/proto/__init__.py +0 -0
  283. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/classifier/fused_classifier/proto/ccrf_type_fusion_config_pb2.py +34 -0
  284. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/classifier/fused_classifier/proto/fused_classifier_config_pb2.py +34 -0
  285. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/proto/__init__.py +0 -0
  286. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/proto/lidar_tracking_component_config_pb2.py +35 -0
  287. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/tracker/__init__.py +0 -0
  288. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/tracker/multi_lidar_fusion/__init__.py +0 -0
  289. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/tracker/multi_lidar_fusion/proto/__init__.py +0 -0
  290. apollo_modules-9.0.0/apollo_modules/modules/perception/lidar_tracking/tracker/multi_lidar_fusion/proto/multi_lidar_fusion_config_pb2.py +104 -0
  291. apollo_modules-9.0.0/apollo_modules/modules/perception/motion_service/__init__.py +0 -0
  292. apollo_modules-9.0.0/apollo_modules/modules/perception/motion_service/proto/__init__.py +0 -0
  293. apollo_modules-9.0.0/apollo_modules/modules/perception/motion_service/proto/motion_service_component_pb2.py +34 -0
  294. apollo_modules-9.0.0/apollo_modules/modules/perception/multi_sensor_fusion/__init__.py +0 -0
  295. apollo_modules-9.0.0/apollo_modules/modules/perception/multi_sensor_fusion/proto/__init__.py +0 -0
  296. apollo_modules-9.0.0/apollo_modules/modules/perception/multi_sensor_fusion/proto/dst_existence_fusion_config_pb2.py +44 -0
  297. apollo_modules-9.0.0/apollo_modules/modules/perception/multi_sensor_fusion/proto/dst_type_fusion_config_pb2.py +54 -0
  298. apollo_modules-9.0.0/apollo_modules/modules/perception/multi_sensor_fusion/proto/fusion_component_config_pb2.py +35 -0
  299. apollo_modules-9.0.0/apollo_modules/modules/perception/multi_sensor_fusion/proto/pbf_gatekeeper_config_pb2.py +34 -0
  300. apollo_modules-9.0.0/apollo_modules/modules/perception/multi_sensor_fusion/proto/pbf_tracker_config_pb2.py +35 -0
  301. apollo_modules-9.0.0/apollo_modules/modules/perception/multi_sensor_fusion/proto/probabilistic_fusion_config_pb2.py +35 -0
  302. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_ground_detection/__init__.py +0 -0
  303. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_ground_detection/ground_detector/__init__.py +0 -0
  304. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_ground_detection/ground_detector/proto/__init__.py +0 -0
  305. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_ground_detection/ground_detector/proto/ground_service_detector_config_pb2.py +34 -0
  306. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_ground_detection/ground_detector/proto/spatio_temporal_ground_detector_config_pb2.py +34 -0
  307. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_ground_detection/proto/__init__.py +0 -0
  308. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_ground_detection/proto/pointcloud_ground_detection_component_config_pb2.py +35 -0
  309. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/__init__.py +0 -0
  310. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/map_manager/__init__.py +0 -0
  311. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/map_manager/proto/__init__.py +0 -0
  312. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/map_manager/proto/map_manager_config_pb2.py +34 -0
  313. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/proto/__init__.py +0 -0
  314. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/proto/pointcloud_map_based_roi_component_config_pb2.py +35 -0
  315. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/roi_filter/__init__.py +0 -0
  316. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/roi_filter/hdmap_roi_filter/__init__.py +0 -0
  317. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/roi_filter/hdmap_roi_filter/proto/__init__.py +0 -0
  318. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_map_based_roi/roi_filter/hdmap_roi_filter/proto/hdmap_roi_filter_pb2.py +34 -0
  319. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_preprocess/__init__.py +0 -0
  320. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_preprocess/preprocessor/__init__.py +0 -0
  321. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_preprocess/preprocessor/proto/__init__.py +0 -0
  322. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_preprocess/preprocessor/proto/pointcloud_preprocessor_config_pb2.py +34 -0
  323. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_preprocess/proto/__init__.py +0 -0
  324. apollo_modules-9.0.0/apollo_modules/modules/perception/pointcloud_preprocess/proto/pointcloud_preprocess_component_config_pb2.py +35 -0
  325. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/__init__.py +0 -0
  326. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/__init__.py +0 -0
  327. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/classifier/__init__.py +0 -0
  328. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/classifier/proto/__init__.py +0 -0
  329. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/classifier/proto/ccrf_type_fusion_config_pb2.py +34 -0
  330. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/classifier/proto/fused_classifier_config_pb2.py +34 -0
  331. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/detector/__init__.py +0 -0
  332. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/detector/point_pillars_detection/__init__.py +0 -0
  333. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/detector/point_pillars_detection/proto/__init__.py +0 -0
  334. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/detector/point_pillars_detection/proto/model_param_pb2.py +36 -0
  335. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/tracker/__init__.py +0 -0
  336. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/tracker/multi_radar_fusion/__init__.py +0 -0
  337. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/tracker/multi_radar_fusion/proto/__init__.py +0 -0
  338. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/lib/tracker/multi_radar_fusion/proto/mrf_config_pb2.py +104 -0
  339. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/proto/__init__.py +0 -0
  340. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/proto/preprocessor_config_pb2.py +34 -0
  341. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/proto/radar4d_component_config_pb2.py +35 -0
  342. apollo_modules-9.0.0/apollo_modules/modules/perception/radar4d_detection/proto/radar_obstacle_perception_config_pb2.py +35 -0
  343. apollo_modules-9.0.0/apollo_modules/modules/perception/radar_detection/__init__.py +0 -0
  344. apollo_modules-9.0.0/apollo_modules/modules/perception/radar_detection/proto/__init__.py +0 -0
  345. apollo_modules-9.0.0/apollo_modules/modules/perception/radar_detection/proto/matcher_config_pb2.py +34 -0
  346. apollo_modules-9.0.0/apollo_modules/modules/perception/radar_detection/proto/preprocessor_pb2.py +34 -0
  347. apollo_modules-9.0.0/apollo_modules/modules/perception/radar_detection/proto/radar_component_config_pb2.py +35 -0
  348. apollo_modules-9.0.0/apollo_modules/modules/perception/radar_detection/proto/radar_obstacle_perception_pb2.py +35 -0
  349. apollo_modules-9.0.0/apollo_modules/modules/perception/radar_detection/proto/tracker_config_pb2.py +35 -0
  350. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_detection/__init__.py +0 -0
  351. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_detection/detection/__init__.py +0 -0
  352. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_detection/detection/proto/__init__.py +0 -0
  353. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_detection/detection/proto/model_param_pb2.py +35 -0
  354. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_detection/proto/__init__.py +0 -0
  355. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_detection/proto/traffic_light_detection_component_pb2.py +35 -0
  356. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_recognition/__init__.py +0 -0
  357. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_recognition/proto/__init__.py +0 -0
  358. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_recognition/proto/traffic_light_recognition_component_pb2.py +35 -0
  359. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_recognition/recognition/__init__.py +0 -0
  360. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_recognition/recognition/proto/__init__.py +0 -0
  361. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_recognition/recognition/proto/model_param_pb2.py +45 -0
  362. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_region_proposal/__init__.py +0 -0
  363. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_region_proposal/proto/__init__.py +0 -0
  364. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_region_proposal/proto/trafficlights_proposal_component_pb2.py +35 -0
  365. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_tracking/__init__.py +0 -0
  366. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_tracking/proto/__init__.py +0 -0
  367. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_tracking/proto/traffic_light_tracking_component_pb2.py +35 -0
  368. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_tracking/tracker/__init__.py +0 -0
  369. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_tracking/tracker/proto/__init__.py +0 -0
  370. apollo_modules-9.0.0/apollo_modules/modules/perception/traffic_light_tracking/tracker/proto/semantic_pb2.py +34 -0
  371. apollo_modules-9.0.0/apollo_modules/modules/planning/__init__.py +0 -0
  372. apollo_modules-9.0.0/apollo_modules/modules/planning/planners/__init__.py +0 -0
  373. apollo_modules-9.0.0/apollo_modules/modules/planning/planners/navi/__init__.py +0 -0
  374. apollo_modules-9.0.0/apollo_modules/modules/planning/planners/navi/proto/__init__.py +0 -0
  375. apollo_modules-9.0.0/apollo_modules/modules/planning/planners/navi/proto/navi_task_config_pb2.py +82 -0
  376. apollo_modules-9.0.0/apollo_modules/modules/planning/planners/navi/proto/planner_config_pb2.py +35 -0
  377. apollo_modules-9.0.0/apollo_modules/modules/planning/planners/public_road/__init__.py +0 -0
  378. apollo_modules-9.0.0/apollo_modules/modules/planning/planners/public_road/proto/__init__.py +0 -0
  379. apollo_modules-9.0.0/apollo_modules/modules/planning/planners/public_road/proto/planner_config_pb2.py +35 -0
  380. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/__init__.py +0 -0
  381. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/learning_based/__init__.py +0 -0
  382. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/learning_based/model_inference/__init__.py +0 -0
  383. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/learning_based/model_inference/proto/__init__.py +0 -0
  384. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/learning_based/model_inference/proto/learning_model_inference_pb2.py +37 -0
  385. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/__init__.py +0 -0
  386. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/auto_tuning_model_input_pb2.py +100 -0
  387. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/auto_tuning_raw_feature_pb2.py +108 -0
  388. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/ipopt_return_status_pb2.py +47 -0
  389. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/lattice_structure_pb2.py +47 -0
  390. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/learning_data_pb2.py +244 -0
  391. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/math/__init__.py +0 -0
  392. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/math/cos_theta_smoother_config_pb2.py +34 -0
  393. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/math/fem_pos_deviation_smoother_config_pb2.py +34 -0
  394. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/math/qp_problem_pb2.py +54 -0
  395. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/piecewise_jerk_path_config_pb2.py +34 -0
  396. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/planner_open_space_config_pb2.py +163 -0
  397. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/planning_config_pb2.py +57 -0
  398. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/planning_semantic_map_config_pb2.py +34 -0
  399. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/planning_status_pb2.py +202 -0
  400. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/plugin_declare_info_pb2.py +34 -0
  401. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/reference_line_smoother_config_pb2.py +69 -0
  402. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_base/proto/st_drivable_boundary_pb2.py +44 -0
  403. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_interface_base/__init__.py +0 -0
  404. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_interface_base/scenario_base/__init__.py +0 -0
  405. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_interface_base/scenario_base/proto/__init__.py +0 -0
  406. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_interface_base/scenario_base/proto/creep_stage_pb2.py +34 -0
  407. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_interface_base/scenario_base/proto/scenario_pipeline_pb2.py +45 -0
  408. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_interface_base/traffic_rules_base/__init__.py +0 -0
  409. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_interface_base/traffic_rules_base/proto/__init__.py +0 -0
  410. apollo_modules-9.0.0/apollo_modules/modules/planning/planning_interface_base/traffic_rules_base/proto/traffic_rules_pipeline_pb2.py +35 -0
  411. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/__init__.py +0 -0
  412. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/bare_intersection_unprotected/__init__.py +0 -0
  413. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/bare_intersection_unprotected/proto/__init__.py +0 -0
  414. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/bare_intersection_unprotected/proto/bare_intersection_unprotected_scenario_pb2.py +34 -0
  415. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/emergency_pull_over/__init__.py +0 -0
  416. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/emergency_pull_over/proto/__init__.py +0 -0
  417. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/emergency_pull_over/proto/emergency_pull_over_pb2.py +34 -0
  418. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/emergency_stop/__init__.py +0 -0
  419. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/emergency_stop/proto/__init__.py +0 -0
  420. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/emergency_stop/proto/emergency_stop_pb2.py +34 -0
  421. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/park_and_go/__init__.py +0 -0
  422. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/park_and_go/proto/__init__.py +0 -0
  423. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/park_and_go/proto/park_and_go_pb2.py +34 -0
  424. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/pull_over/__init__.py +0 -0
  425. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/pull_over/proto/__init__.py +0 -0
  426. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/pull_over/proto/pull_over_pb2.py +34 -0
  427. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/stop_sign_unprotected/__init__.py +0 -0
  428. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/stop_sign_unprotected/proto/__init__.py +0 -0
  429. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/stop_sign_unprotected/proto/stop_sign_unprotected_pb2.py +35 -0
  430. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_protected/__init__.py +0 -0
  431. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_protected/proto/__init__.py +0 -0
  432. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_protected/proto/traffic_light_protected_pb2.py +34 -0
  433. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_left_turn/__init__.py +0 -0
  434. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_left_turn/proto/__init__.py +0 -0
  435. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_left_turn/proto/traffic_light_unprotected_left_turn_pb2.py +35 -0
  436. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_right_turn/__init__.py +0 -0
  437. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_right_turn/proto/__init__.py +0 -0
  438. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_right_turn/proto/traffic_light_unprotected_right_turn_pb2.py +35 -0
  439. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/valet_parking/__init__.py +0 -0
  440. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/valet_parking/proto/__init__.py +0 -0
  441. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/valet_parking/proto/valet_parking_pb2.py +34 -0
  442. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/yield_sign/__init__.py +0 -0
  443. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/yield_sign/proto/__init__.py +0 -0
  444. apollo_modules-9.0.0/apollo_modules/modules/planning/scenarios/yield_sign/proto/yield_sign_pb2.py +35 -0
  445. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/__init__.py +0 -0
  446. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/fallback_path/__init__.py +0 -0
  447. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/fallback_path/proto/__init__.py +0 -0
  448. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/fallback_path/proto/fallback_path_pb2.py +35 -0
  449. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_borrow_path/__init__.py +0 -0
  450. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_borrow_path/proto/__init__.py +0 -0
  451. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_borrow_path/proto/lane_borrow_path_pb2.py +35 -0
  452. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_change_path/__init__.py +0 -0
  453. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_change_path/proto/__init__.py +0 -0
  454. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_change_path/proto/lane_change_path_pb2.py +35 -0
  455. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_follow_path/__init__.py +0 -0
  456. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_follow_path/proto/__init__.py +0 -0
  457. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/lane_follow_path/proto/lane_follow_path_pb2.py +35 -0
  458. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_fallback_decider/__init__.py +0 -0
  459. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_fallback_decider/proto/__init__.py +0 -0
  460. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_fallback_decider/proto/open_space_fallback_decider_pb2.py +34 -0
  461. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_pre_stop_decider/__init__.py +0 -0
  462. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_pre_stop_decider/proto/__init__.py +0 -0
  463. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_pre_stop_decider/proto/open_space_pre_stop_decider_pb2.py +37 -0
  464. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_roi_decider/__init__.py +0 -0
  465. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_roi_decider/proto/__init__.py +0 -0
  466. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_roi_decider/proto/open_space_roi_decider_pb2.py +37 -0
  467. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_trajectory_partition/__init__.py +0 -0
  468. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_trajectory_partition/proto/__init__.py +0 -0
  469. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_trajectory_partition/proto/open_space_trajectory_partition_pb2.py +34 -0
  470. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_trajectory_provider/__init__.py +0 -0
  471. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_trajectory_provider/proto/__init__.py +0 -0
  472. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/open_space_trajectory_provider/proto/open_space_trajectory_provider_pb2.py +48 -0
  473. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_decider/__init__.py +0 -0
  474. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_decider/proto/__init__.py +0 -0
  475. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_decider/proto/path_decider_pb2.py +34 -0
  476. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_reference_decider/__init__.py +0 -0
  477. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_reference_decider/proto/__init__.py +0 -0
  478. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_reference_decider/proto/path_reference_decider_pb2.py +34 -0
  479. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_time_heuristic/__init__.py +0 -0
  480. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_time_heuristic/proto/__init__.py +0 -0
  481. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/path_time_heuristic/proto/path_time_heuristic_pb2.py +44 -0
  482. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/piecewise_jerk_speed/__init__.py +0 -0
  483. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/piecewise_jerk_speed/proto/__init__.py +0 -0
  484. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/piecewise_jerk_speed/proto/piecewise_jerk_speed_pb2.py +34 -0
  485. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/piecewise_jerk_speed_nonlinear/__init__.py +0 -0
  486. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/piecewise_jerk_speed_nonlinear/proto/__init__.py +0 -0
  487. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/piecewise_jerk_speed_nonlinear/proto/piecewise_jerk_speed_nonlinear_pb2.py +34 -0
  488. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/pull_over_path/__init__.py +0 -0
  489. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/pull_over_path/proto/__init__.py +0 -0
  490. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/pull_over_path/proto/pull_over_path_pb2.py +41 -0
  491. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/reuse_path/__init__.py +0 -0
  492. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/reuse_path/proto/__init__.py +0 -0
  493. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/reuse_path/proto/reuse_path_pb2.py +35 -0
  494. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/rss_decider/__init__.py +0 -0
  495. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/rss_decider/proto/__init__.py +0 -0
  496. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/rss_decider/proto/rss_decider_pb2.py +34 -0
  497. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/rule_based_stop_decider/__init__.py +0 -0
  498. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/rule_based_stop_decider/proto/__init__.py +0 -0
  499. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/rule_based_stop_decider/proto/rule_based_stop_decider_pb2.py +34 -0
  500. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/speed_bounds_decider/__init__.py +0 -0
  501. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/speed_bounds_decider/proto/__init__.py +0 -0
  502. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/speed_bounds_decider/proto/speed_bounds_decider_pb2.py +34 -0
  503. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/speed_decider/__init__.py +0 -0
  504. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/speed_decider/proto/__init__.py +0 -0
  505. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/speed_decider/proto/speed_decider_pb2.py +34 -0
  506. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/st_bounds_decider/__init__.py +0 -0
  507. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/st_bounds_decider/proto/__init__.py +0 -0
  508. apollo_modules-9.0.0/apollo_modules/modules/planning/tasks/st_bounds_decider/proto/st_bounds_decider_pb2.py +34 -0
  509. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/__init__.py +0 -0
  510. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/backside_vehicle/__init__.py +0 -0
  511. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/backside_vehicle/proto/__init__.py +0 -0
  512. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/backside_vehicle/proto/backside_vehicle_pb2.py +34 -0
  513. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/crosswalk/__init__.py +0 -0
  514. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/crosswalk/proto/__init__.py +0 -0
  515. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/crosswalk/proto/crosswalk_pb2.py +34 -0
  516. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/destination/__init__.py +0 -0
  517. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/destination/proto/__init__.py +0 -0
  518. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/destination/proto/destination_pb2.py +34 -0
  519. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/keepclear/__init__.py +0 -0
  520. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/keepclear/proto/__init__.py +0 -0
  521. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/keepclear/proto/keepclear_pb2.py +34 -0
  522. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/reference_line_end/__init__.py +0 -0
  523. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/reference_line_end/proto/__init__.py +0 -0
  524. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/reference_line_end/proto/reference_line_end_pb2.py +34 -0
  525. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/rerouting/__init__.py +0 -0
  526. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/rerouting/proto/__init__.py +0 -0
  527. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/rerouting/proto/rerouting_pb2.py +34 -0
  528. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/stop_sign/__init__.py +0 -0
  529. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/stop_sign/proto/__init__.py +0 -0
  530. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/stop_sign/proto/stop_sign_pb2.py +34 -0
  531. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/traffic_light/__init__.py +0 -0
  532. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/traffic_light/proto/__init__.py +0 -0
  533. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/traffic_light/proto/traffic_light_pb2.py +34 -0
  534. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/yield_sign/__init__.py +0 -0
  535. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/yield_sign/proto/__init__.py +0 -0
  536. apollo_modules-9.0.0/apollo_modules/modules/planning/traffic_rules/yield_sign/proto/yield_sign_pb2.py +34 -0
  537. apollo_modules-9.0.0/apollo_modules/modules/prediction/__init__.py +0 -0
  538. apollo_modules-9.0.0/apollo_modules/modules/prediction/proto/__init__.py +0 -0
  539. apollo_modules-9.0.0/apollo_modules/modules/prediction/proto/fnn_model_base_pb2.py +57 -0
  540. apollo_modules-9.0.0/apollo_modules/modules/prediction/proto/fnn_vehicle_model_pb2.py +35 -0
  541. apollo_modules-9.0.0/apollo_modules/modules/prediction/proto/network_layers_pb2.py +146 -0
  542. apollo_modules-9.0.0/apollo_modules/modules/prediction/proto/network_model_pb2.py +55 -0
  543. apollo_modules-9.0.0/apollo_modules/modules/prediction/proto/offline_features_pb2.py +108 -0
  544. apollo_modules-9.0.0/apollo_modules/modules/prediction/proto/prediction_conf_pb2.py +102 -0
  545. apollo_modules-9.0.0/apollo_modules/modules/prediction/proto/vector_net_pb2.py +74 -0
  546. apollo_modules-9.0.0/apollo_modules/modules/routing/__init__.py +0 -0
  547. apollo_modules-9.0.0/apollo_modules/modules/routing/proto/__init__.py +0 -0
  548. apollo_modules-9.0.0/apollo_modules/modules/routing/proto/routing_config_pb2.py +44 -0
  549. apollo_modules-9.0.0/apollo_modules/modules/routing/proto/topo_graph_pb2.py +78 -0
  550. apollo_modules-9.0.0/apollo_modules/modules/storytelling/__init__.py +0 -0
  551. apollo_modules-9.0.0/apollo_modules/modules/storytelling/proto/__init__.py +0 -0
  552. apollo_modules-9.0.0/apollo_modules/modules/storytelling/proto/storytelling_config_pb2.py +44 -0
  553. apollo_modules-9.0.0/apollo_modules/modules/task_manager/__init__.py +0 -0
  554. apollo_modules-9.0.0/apollo_modules/modules/task_manager/proto/__init__.py +0 -0
  555. apollo_modules-9.0.0/apollo_modules/modules/task_manager/proto/task_manager_config_pb2.py +44 -0
  556. apollo_modules-9.0.0/apollo_modules/modules/third_party_perception/__init__.py +0 -0
  557. apollo_modules-9.0.0/apollo_modules/modules/third_party_perception/proto/__init__.py +0 -0
  558. apollo_modules-9.0.0/apollo_modules/modules/third_party_perception/proto/radar_obstacle_pb2.py +60 -0
  559. apollo_modules-9.0.0/apollo_modules/modules/third_party_perception/proto/third_party_perception_component_pb2.py +41 -0
  560. apollo_modules-9.0.0/apollo_modules/modules/tools/__init__.py +0 -0
  561. apollo_modules-9.0.0/apollo_modules/modules/tools/navigator/__init__.py +0 -0
  562. apollo_modules-9.0.0/apollo_modules/modules/tools/navigator/dbmap/__init__.py +0 -0
  563. apollo_modules-9.0.0/apollo_modules/modules/tools/navigator/dbmap/proto/__init__.py +0 -0
  564. apollo_modules-9.0.0/apollo_modules/modules/tools/navigator/dbmap/proto/dbmap_pb2.py +84 -0
  565. apollo_modules-9.0.0/apollo_modules/modules/tools/prediction/__init__.py +0 -0
  566. apollo_modules-9.0.0/apollo_modules/modules/tools/prediction/data_pipelines/__init__.py +0 -0
  567. apollo_modules-9.0.0/apollo_modules/modules/tools/prediction/data_pipelines/proto/__init__.py +0 -0
  568. apollo_modules-9.0.0/apollo_modules/modules/tools/prediction/data_pipelines/proto/cruise_model_pb2.py +146 -0
  569. apollo_modules-9.0.0/apollo_modules/modules/tools/prediction/data_pipelines/proto/fnn_model_pb2.py +67 -0
  570. apollo_modules-9.0.0/apollo_modules/modules/tools/sensor_calibration/__init__.py +0 -0
  571. apollo_modules-9.0.0/apollo_modules/modules/tools/sensor_calibration/proto/__init__.py +0 -0
  572. apollo_modules-9.0.0/apollo_modules/modules/tools/sensor_calibration/proto/extractor_config_pb2.py +74 -0
  573. apollo_modules-9.0.0/apollo_modules/modules/transform/__init__.py +0 -0
  574. apollo_modules-9.0.0/apollo_modules/modules/transform/proto/__init__.py +0 -0
  575. apollo_modules-9.0.0/apollo_modules/modules/transform/proto/static_transform_conf_pb2.py +44 -0
  576. apollo_modules-9.0.0/apollo_modules/modules/v2x/__init__.py +0 -0
  577. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/__init__.py +0 -0
  578. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/fusion_params_pb2.py +83 -0
  579. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_car_status_pb2.py +37 -0
  580. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_junction_pb2.py +51 -0
  581. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_monitor_pb2.py +47 -0
  582. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_obstacles_pb2.py +90 -0
  583. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_obu_rsi_pb2.py +36 -0
  584. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_obu_traffic_light_pb2.py +69 -0
  585. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_rsi_pb2.py +45 -0
  586. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_service_car_to_obu_pb2.py +38 -0
  587. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_service_obu_to_car_pb2.py +41 -0
  588. apollo_modules-9.0.0/apollo_modules/modules/v2x/proto/v2x_traffic_light_policy_pb2.py +130 -0
  589. apollo_modules-9.0.0/apollo_modules.egg-info/PKG-INFO +56 -0
  590. apollo_modules-9.0.0/apollo_modules.egg-info/SOURCES.txt +778 -0
  591. apollo_modules-9.0.0/setup.py +23 -0
  592. apollo_modules-7.0.1/PKG-INFO +0 -15
  593. apollo_modules-7.0.1/README.md +0 -1
  594. apollo_modules-7.0.1/apollo_modules/modules/add_init.py +0 -14
  595. apollo_modules-7.0.1/apollo_modules/modules/audio/proto/audio_common_pb2.py +0 -144
  596. apollo_modules-7.0.1/apollo_modules/modules/audio/proto/audio_conf_pb2.py +0 -144
  597. apollo_modules-7.0.1/apollo_modules/modules/audio/proto/audio_event_pb2.py +0 -120
  598. apollo_modules-7.0.1/apollo_modules/modules/audio/proto/audio_pb2.py +0 -104
  599. apollo_modules-7.0.1/apollo_modules/modules/bridge/proto/udp_bridge_remote_info_pb2.py +0 -143
  600. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/canbus_conf_pb2.py +0 -102
  601. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/ch_pb2.py +0 -1491
  602. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/chassis_detail_pb2.py +0 -5486
  603. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/chassis_pb2.py +0 -1097
  604. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/devkit_pb2.py +0 -1946
  605. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/ge3_pb2.py +0 -3405
  606. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/lexus_pb2.py +0 -6528
  607. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/neolix_edu_pb2.py +0 -2229
  608. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/transit_pb2.py +0 -1585
  609. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/vehicle_parameter_pb2.py +0 -95
  610. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/wey_pb2.py +0 -3224
  611. apollo_modules-7.0.1/apollo_modules/modules/canbus/proto/zhongyun_pb2.py +0 -1130
  612. apollo_modules-7.0.1/apollo_modules/modules/common/adapters/proto/adapter_config_pb2.py +0 -488
  613. apollo_modules-7.0.1/apollo_modules/modules/common/configs/proto/vehicle_config_pb2.py +0 -576
  614. apollo_modules-7.0.1/apollo_modules/modules/common/latency_recorder/proto/latency_record_pb2.py +0 -343
  615. apollo_modules-7.0.1/apollo_modules/modules/common/monitor_log/proto/monitor_log_pb2.py +0 -267
  616. apollo_modules-7.0.1/apollo_modules/modules/common/proto/direction_pb2.py +0 -87
  617. apollo_modules-7.0.1/apollo_modules/modules/common/proto/drive_event_pb2.py +0 -135
  618. apollo_modules-7.0.1/apollo_modules/modules/common/proto/drive_state_pb2.py +0 -113
  619. apollo_modules-7.0.1/apollo_modules/modules/common/proto/error_code_pb2.py +0 -289
  620. apollo_modules-7.0.1/apollo_modules/modules/common/proto/geometry_pb2.py +0 -335
  621. apollo_modules-7.0.1/apollo_modules/modules/common/proto/header_pb2.py +0 -128
  622. apollo_modules-7.0.1/apollo_modules/modules/common/proto/pnc_point_pb2.py +0 -664
  623. apollo_modules-7.0.1/apollo_modules/modules/common/proto/vehicle_signal_pb2.py +0 -126
  624. apollo_modules-7.0.1/apollo_modules/modules/common/util/testdata/simple_pb2.py +0 -126
  625. apollo_modules-7.0.1/apollo_modules/modules/common/vehicle_model/proto/vehicle_model_config_pb2.py +0 -239
  626. apollo_modules-7.0.1/apollo_modules/modules/common/vehicle_state/proto/vehicle_state_pb2.py +0 -180
  627. apollo_modules-7.0.1/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection2d_pb2.py +0 -270
  628. apollo_modules-7.0.1/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection2darray_pb2.py +0 -81
  629. apollo_modules-7.0.1/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection3d_pb2.py +0 -207
  630. apollo_modules-7.0.1/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection3darray_pb2.py +0 -81
  631. apollo_modules-7.0.1/apollo_modules/modules/control/proto/calibration_table_pb2.py +0 -123
  632. apollo_modules-7.0.1/apollo_modules/modules/control/proto/control_cmd_pb2.py +0 -1452
  633. apollo_modules-7.0.1/apollo_modules/modules/control/proto/control_common_conf_pb2.py +0 -298
  634. apollo_modules-7.0.1/apollo_modules/modules/control/proto/control_conf_pb2.py +0 -361
  635. apollo_modules-7.0.1/apollo_modules/modules/control/proto/gain_scheduler_conf_pb2.py +0 -116
  636. apollo_modules-7.0.1/apollo_modules/modules/control/proto/input_debug_pb2.py +0 -96
  637. apollo_modules-7.0.1/apollo_modules/modules/control/proto/lat_controller_conf_pb2.py +0 -252
  638. apollo_modules-7.0.1/apollo_modules/modules/control/proto/leadlag_conf_pb2.py +0 -90
  639. apollo_modules-7.0.1/apollo_modules/modules/control/proto/local_view_pb2.py +0 -108
  640. apollo_modules-7.0.1/apollo_modules/modules/control/proto/lon_controller_conf_pb2.py +0 -247
  641. apollo_modules-7.0.1/apollo_modules/modules/control/proto/mpc_controller_conf_pb2.py +0 -238
  642. apollo_modules-7.0.1/apollo_modules/modules/control/proto/mrac_conf_pb2.py +0 -139
  643. apollo_modules-7.0.1/apollo_modules/modules/control/proto/pad_msg_pb2.py +0 -121
  644. apollo_modules-7.0.1/apollo_modules/modules/control/proto/pid_conf_pb2.py +0 -111
  645. apollo_modules-7.0.1/apollo_modules/modules/control/proto/preprocessor_pb2.py +0 -120
  646. apollo_modules-7.0.1/apollo_modules/modules/data/proto/frame_pb2.py +0 -632
  647. apollo_modules-7.0.1/apollo_modules/modules/data/proto/static_info_pb2.py +0 -603
  648. apollo_modules-7.0.1/apollo_modules/modules/data/tools/smart_recorder/proto/smart_recorder_status_pb2.py +0 -119
  649. apollo_modules-7.0.1/apollo_modules/modules/data/tools/smart_recorder/proto/smart_recorder_triggers_pb2.py +0 -212
  650. apollo_modules-7.0.1/apollo_modules/modules/dreamview/backend/teleop/proto/daemon_cmd_pb2.py +0 -86
  651. apollo_modules-7.0.1/apollo_modules/modules/dreamview/backend/teleop/proto/daemon_rpt_pb2.py +0 -79
  652. apollo_modules-7.0.1/apollo_modules/modules/dreamview/backend/teleop/proto/modem_info_pb2.py +0 -198
  653. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/camera_update_pb2.py +0 -90
  654. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/chart_pb2.py +0 -538
  655. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/data_collection_table_pb2.py +0 -374
  656. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/hmi_config_pb2.py +0 -380
  657. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/hmi_mode_pb2.py +0 -892
  658. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/hmi_status_pb2.py +0 -303
  659. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/point_cloud_pb2.py +0 -70
  660. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/preprocess_table_pb2.py +0 -333
  661. apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto/simulation_world_pb2.py +0 -1635
  662. apollo_modules-7.0.1/apollo_modules/modules/drivers/camera/proto/config_pb2.py +0 -363
  663. apollo_modules-7.0.1/apollo_modules/modules/drivers/canbus/proto/can_card_parameter_pb2.py +0 -233
  664. apollo_modules-7.0.1/apollo_modules/modules/drivers/canbus/proto/sensor_canbus_conf_pb2.py +0 -86
  665. apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto/config_pb2.py +0 -752
  666. apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto/gnss_best_pose_pb2.py +0 -523
  667. apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto/gnss_pb2.py +0 -239
  668. apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto/gnss_raw_observation_pb2.py +0 -1052
  669. apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto/gnss_status_pb2.py +0 -264
  670. apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto/heading_pb2.py +0 -198
  671. apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto/imu_pb2.py +0 -103
  672. apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto/ins_pb2.py +0 -250
  673. apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto/config_pb2.py +0 -99
  674. apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto/hesai_config_pb2.py +0 -149
  675. apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto/hesai_pb2.py +0 -173
  676. apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto/lidar_parameter_pb2.py +0 -130
  677. apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto/robosense_config_pb2.py +0 -167
  678. apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto/robosense_pb2.py +0 -140
  679. apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto/velodyne_config_pb2.py +0 -368
  680. apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto/velodyne_pb2.py +0 -252
  681. apollo_modules-7.0.1/apollo_modules/modules/drivers/microphone/proto/audio_pb2.py +0 -136
  682. apollo_modules-7.0.1/apollo_modules/modules/drivers/microphone/proto/microphone_config_pb2.py +0 -188
  683. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/conti_radar_pb2.py +0 -495
  684. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/delphi_esr_pb2.py +0 -3856
  685. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/mobileye_pb2.py +0 -1304
  686. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/pointcloud_pb2.py +0 -182
  687. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/racobit_radar_pb2.py +0 -495
  688. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/radar_pb2.py +0 -354
  689. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/sensor_image_pb2.py +0 -448
  690. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/smartereye_pb2.py +0 -1127
  691. apollo_modules-7.0.1/apollo_modules/modules/drivers/proto/ultrasonic_radar_pb2.py +0 -79
  692. apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/conti_radar/proto/conti_radar_conf_pb2.py +0 -397
  693. apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/racobit_radar/proto/racobit_radar_conf_pb2.py +0 -383
  694. apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/ultrasonic_radar/proto/ultrasonic_radar_conf_pb2.py +0 -140
  695. apollo_modules-7.0.1/apollo_modules/modules/drivers/smartereye/proto/config_pb2.py +0 -377
  696. apollo_modules-7.0.1/apollo_modules/modules/drivers/tools/image_decompress/proto/config_pb2.py +0 -69
  697. apollo_modules-7.0.1/apollo_modules/modules/drivers/video/proto/video_h265cfg_pb2.py +0 -284
  698. apollo_modules-7.0.1/apollo_modules/modules/guardian/proto/guardian_conf_pb2.py +0 -83
  699. apollo_modules-7.0.1/apollo_modules/modules/guardian/proto/guardian_pb2.py +0 -81
  700. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/gnss_pnt_result_pb2.py +0 -335
  701. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/gps_pb2.py +0 -81
  702. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/imu_pb2.py +0 -81
  703. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/localization_config_pb2.py +0 -94
  704. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/localization_pb2.py +0 -317
  705. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/localization_status_pb2.py +0 -781
  706. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/measure_pb2.py +0 -217
  707. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/pose_pb2.py +0 -135
  708. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/rtk_config_pb2.py +0 -146
  709. apollo_modules-7.0.1/apollo_modules/modules/localization/proto/sins_pva_pb2.py +0 -112
  710. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_clear_area_pb2.py +0 -89
  711. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_crosswalk_pb2.py +0 -89
  712. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_geometry_pb2.py +0 -227
  713. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_id_pb2.py +0 -69
  714. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_junction_pb2.py +0 -137
  715. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_lane_pb2.py +0 -538
  716. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_overlap_pb2.py +0 -690
  717. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_parking_space_pb2.py +0 -152
  718. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_pb2.py +0 -344
  719. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_pnc_junction_pb2.py +0 -253
  720. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_road_pb2.py +0 -401
  721. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_rsu_pb2.py +0 -88
  722. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_signal_pb2.py +0 -330
  723. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_speed_bump_pb2.py +0 -89
  724. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_speed_control_pb2.py +0 -126
  725. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_stop_sign_pb2.py +0 -137
  726. apollo_modules-7.0.1/apollo_modules/modules/map/proto/map_yield_sign_pb2.py +0 -89
  727. apollo_modules-7.0.1/apollo_modules/modules/map/relative_map/proto/navigation_pb2.py +0 -251
  728. apollo_modules-7.0.1/apollo_modules/modules/map/relative_map/proto/navigator_config_pb2.py +0 -158
  729. apollo_modules-7.0.1/apollo_modules/modules/map/relative_map/proto/relative_map_config_pb2.py +0 -265
  730. apollo_modules-7.0.1/apollo_modules/modules/map/tools/map_datachecker/proto/collection_check_message_pb2.py +0 -803
  731. apollo_modules-7.0.1/apollo_modules/modules/map/tools/map_datachecker/proto/collection_error_code_pb2.py +0 -172
  732. apollo_modules-7.0.1/apollo_modules/modules/map/tools/map_datachecker/proto/collection_service_pb2.py +0 -92
  733. apollo_modules-7.0.1/apollo_modules/modules/monitor/proto/system_status_pb2.py +0 -431
  734. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/app/proto/perception_pb2.py +0 -694
  735. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/common/proto/object_template_meta_schema_pb2.py +0 -265
  736. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/feature_extractor/tfe/proto/tracking_feature_pb2.py +0 -396
  737. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/common/proto/darkSCNN_pb2.py +0 -296
  738. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/common/proto/denseline_pb2.py +0 -254
  739. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/postprocessor/darkSCNN/proto/darkSCNN_postprocessor_pb2.py +0 -97
  740. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/postprocessor/denseline/proto/denseline_postprocessor_pb2.py +0 -104
  741. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/detector/smoke/proto/smoke_pb2.py +0 -850
  742. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/postprocessor/location_refiner/proto/location_refiner_pb2.py +0 -76
  743. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/tracker/omt/proto/omt_pb2.py +0 -616
  744. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/transformer/multicue/proto/multicue_pb2.py +0 -76
  745. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/transformer/singlestage/proto/singlestage_pb2.py +0 -76
  746. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/detector/recognition/proto/recognition_pb2.py +0 -216
  747. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/preprocessor/proto/tl_preprocess_pb2.py +0 -77
  748. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/proto/detection_pb2.py +0 -167
  749. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/tracker/proto/semantic_pb2.py +0 -83
  750. apollo_modules-7.0.1/apollo_modules/modules/perception/camera/proto/yolo_pb2.py +0 -836
  751. apollo_modules-7.0.1/apollo_modules/modules/perception/fusion/lib/gatekeeper/pbf_gatekeeper/proto/pbf_gatekeeper_config_pb2.py +0 -153
  752. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/app/proto/lidar_obstacle_detection_config_pb2.py +0 -90
  753. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/app/proto/lidar_obstacle_tracking_config_pb2.py +0 -83
  754. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation/proto/cnnseg_config_pb2.py +0 -90
  755. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation/proto/cnnseg_param_pb2.py +0 -324
  756. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation/proto/spp_engine_config_pb2.py +0 -69
  757. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/ncut_segmentation/proto/ncut_config_pb2.py +0 -69
  758. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/ncut_segmentation/proto/ncut_param_pb2.py +0 -319
  759. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/ground_detector/ground_service_detector/proto/ground_service_detector_config_pb2.py +0 -69
  760. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/ground_detector/spatio_temporal_ground_detector/proto/spatio_temporal_ground_detector_config_pb2.py +0 -118
  761. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/object_filter_bank/proto/filter_bank_config_pb2.py +0 -69
  762. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/pointcloud_preprocessor/proto/pointcloud_preprocessor_config_pb2.py +0 -118
  763. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/roi_filter/hdmap_roi_filter/proto/hdmap_roi_filter_pb2.py +0 -97
  764. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager/ground_service/proto/ground_service_config_pb2.py +0 -83
  765. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager/proto/scene_manager_config_pb2.py +0 -69
  766. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager/roi_service/proto/roi_service_pb2.py +0 -76
  767. apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/tracker/multi_lidar_fusion/proto/multi_lidar_fusion_config_pb2.py +0 -554
  768. apollo_modules-7.0.1/apollo_modules/modules/perception/onboard/proto/fusion_camera_detection_component_pb2.py +0 -293
  769. apollo_modules-7.0.1/apollo_modules/modules/perception/onboard/proto/fusion_component_config_pb2.py +0 -111
  770. apollo_modules-7.0.1/apollo_modules/modules/perception/onboard/proto/lane_perception_component_pb2.py +0 -202
  771. apollo_modules-7.0.1/apollo_modules/modules/perception/onboard/proto/lidar_component_config_pb2.py +0 -150
  772. apollo_modules-7.0.1/apollo_modules/modules/perception/onboard/proto/motion_service_pb2.py +0 -90
  773. apollo_modules-7.0.1/apollo_modules/modules/perception/onboard/proto/radar_component_config_pb2.py +0 -118
  774. apollo_modules-7.0.1/apollo_modules/modules/perception/onboard/proto/trafficlights_perception_component_pb2.py +0 -202
  775. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/ccrf_type_fusion_config_pb2.py +0 -83
  776. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/dst_existence_fusion_config_pb2.py +0 -123
  777. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/dst_type_fusion_config_pb2.py +0 -191
  778. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/fused_classifier_config_pb2.py +0 -97
  779. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/map_manager_config_pb2.py +0 -90
  780. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/motion_service_pb2.py +0 -327
  781. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/pbf_tracker_config_pb2.py +0 -90
  782. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/perception_camera_pb2.py +0 -682
  783. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/perception_config_schema_pb2.py +0 -695
  784. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/perception_lane_pb2.py +0 -104
  785. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/perception_obstacle_pb2.py +0 -1137
  786. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/perception_ultrasonic_pb2.py +0 -143
  787. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/probabilistic_fusion_config_pb2.py +0 -139
  788. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/roi_boundary_filter_config_pb2.py +0 -90
  789. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/rt_pb2.py +0 -9571
  790. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/sensor_meta_schema_pb2.py +0 -241
  791. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/tracker_config_pb2.py +0 -76
  792. apollo_modules-7.0.1/apollo_modules/modules/perception/proto/traffic_light_detection_pb2.py +0 -458
  793. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/auto_tuning_model_input_pb2.py +0 -534
  794. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/auto_tuning_raw_feature_pb2.py +0 -581
  795. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/decision_pb2.py +0 -1733
  796. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/ipopt_return_status_pb2.py +0 -137
  797. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/lattice_structure_pb2.py +0 -148
  798. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/learning_data_pb2.py +0 -1377
  799. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/math/cos_theta_smoother_config_pb2.py +0 -125
  800. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/math/fem_pos_deviation_smoother_config_pb2.py +0 -209
  801. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/math/qp_problem_pb2.py +0 -221
  802. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/open_space_task_config_pb2.py +0 -1161
  803. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/pad_msg_pb2.py +0 -132
  804. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/planner_open_space_config_pb2.py +0 -1151
  805. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/planning_config_pb2.py +0 -2372
  806. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/planning_internal_pb2.py +0 -2107
  807. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/planning_pb2.py +0 -622
  808. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/planning_semantic_map_config_pb2.py +0 -146
  809. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/planning_stats_pb2.py +0 -177
  810. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/planning_status_pb2.py +0 -1191
  811. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/reference_line_smoother_config_pb2.py +0 -412
  812. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/sl_boundary_pb2.py +0 -100
  813. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/st_drivable_boundary_pb2.py +0 -137
  814. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/task_config_pb2.py +0 -1851
  815. apollo_modules-7.0.1/apollo_modules/modules/planning/proto/traffic_rule_config_pb2.py +0 -741
  816. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/feature_pb2.py +0 -966
  817. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/fnn_model_base_pb2.py +0 -211
  818. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/fnn_vehicle_model_pb2.py +0 -109
  819. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/lane_graph_pb2.py +0 -745
  820. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/network_layers_pb2.py +0 -933
  821. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/network_model_pb2.py +0 -216
  822. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/offline_features_pb2.py +0 -468
  823. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/prediction_conf_pb2.py +0 -414
  824. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/prediction_obstacle_pb2.py +0 -387
  825. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/prediction_point_pb2.py +0 -130
  826. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/scenario_pb2.py +0 -121
  827. apollo_modules-7.0.1/apollo_modules/modules/prediction/proto/vector_net_pb2.py +0 -271
  828. apollo_modules-7.0.1/apollo_modules/modules/routing/proto/poi_pb2.py +0 -135
  829. apollo_modules-7.0.1/apollo_modules/modules/routing/proto/routing_config_pb2.py +0 -158
  830. apollo_modules-7.0.1/apollo_modules/modules/routing/proto/routing_pb2.py +0 -665
  831. apollo_modules-7.0.1/apollo_modules/modules/routing/proto/topo_graph_pb2.py +0 -361
  832. apollo_modules-7.0.1/apollo_modules/modules/storytelling/proto/story_pb2.py +0 -428
  833. apollo_modules-7.0.1/apollo_modules/modules/storytelling/proto/storytelling_config_pb2.py +0 -116
  834. apollo_modules-7.0.1/apollo_modules/modules/task_manager/proto/task_manager_config_pb2.py +0 -130
  835. apollo_modules-7.0.1/apollo_modules/modules/task_manager/proto/task_manager_pb2.py +0 -345
  836. apollo_modules-7.0.1/apollo_modules/modules/third_party_perception/proto/radar_obstacle_pb2.py +0 -265
  837. apollo_modules-7.0.1/apollo_modules/modules/third_party_perception/proto/third_party_perception_component_pb2.py +0 -97
  838. apollo_modules-7.0.1/apollo_modules/modules/tools/navigator/dbmap/proto/dbmap_pb2.py +0 -371
  839. apollo_modules-7.0.1/apollo_modules/modules/tools/prediction/data_pipelines/proto/cruise_model_pb2.py +0 -807
  840. apollo_modules-7.0.1/apollo_modules/modules/tools/prediction/data_pipelines/proto/fnn_model_pb2.py +0 -288
  841. apollo_modules-7.0.1/apollo_modules/modules/tools/sensor_calibration/proto/extractor_config_pb2.py +0 -285
  842. apollo_modules-7.0.1/apollo_modules/modules/transform/proto/static_transform_conf_pb2.py +0 -130
  843. apollo_modules-7.0.1/apollo_modules/modules/transform/proto/transform_pb2.py +0 -184
  844. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/fusion_params_pb2.py +0 -330
  845. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_car_status_pb2.py +0 -98
  846. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_junction_pb2.py +0 -218
  847. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_monitor_pb2.py +0 -141
  848. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_obstacles_pb2.py +0 -423
  849. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_obu_rsi_pb2.py +0 -131
  850. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_obu_traffic_light_pb2.py +0 -326
  851. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_rsi_pb2.py +0 -175
  852. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_service_car_to_obu_pb2.py +0 -95
  853. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_service_obu_to_car_pb2.py +0 -139
  854. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_traffic_light_pb2.py +0 -313
  855. apollo_modules-7.0.1/apollo_modules/modules/v2x/proto/v2x_traffic_light_policy_pb2.py +0 -631
  856. apollo_modules-7.0.1/apollo_modules.egg-info/PKG-INFO +0 -15
  857. apollo_modules-7.0.1/apollo_modules.egg-info/SOURCES.txt +0 -454
  858. apollo_modules-7.0.1/setup.py +0 -23
  859. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules/__init__.py +0 -0
  860. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules/modules/__init__.py +0 -0
  861. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules/modules/audio/__init__.py +0 -0
  862. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules/modules/audio/proto/__init__.py +0 -0
  863. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules/modules/bridge/__init__.py +0 -0
  864. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules/modules/bridge/proto/__init__.py +0 -0
  865. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules/modules/canbus/__init__.py +0 -0
  866. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules/modules/canbus/proto/__init__.py +0 -0
  867. {apollo_modules-7.0.1/apollo_modules/modules/common → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle}/__init__.py +0 -0
  868. {apollo_modules-7.0.1/apollo_modules/modules/common/adapters → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/ch}/__init__.py +0 -0
  869. {apollo_modules-7.0.1/apollo_modules/modules/common/adapters → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/ch}/proto/__init__.py +0 -0
  870. {apollo_modules-7.0.1/apollo_modules/modules/common/configs → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/devkit}/__init__.py +0 -0
  871. {apollo_modules-7.0.1/apollo_modules/modules/common/configs → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/devkit}/proto/__init__.py +0 -0
  872. {apollo_modules-7.0.1/apollo_modules/modules/common/latency_recorder → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/ge3}/__init__.py +0 -0
  873. {apollo_modules-7.0.1/apollo_modules/modules/common/latency_recorder → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/ge3}/proto/__init__.py +0 -0
  874. {apollo_modules-7.0.1/apollo_modules/modules/common/monitor_log → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/gem}/__init__.py +0 -0
  875. {apollo_modules-7.0.1/apollo_modules/modules/common/monitor_log → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/gem}/proto/__init__.py +0 -0
  876. {apollo_modules-7.0.1/apollo_modules/modules/common/proto → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/lexus}/__init__.py +0 -0
  877. {apollo_modules-7.0.1/apollo_modules/modules/common/util → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/lexus/proto}/__init__.py +0 -0
  878. {apollo_modules-7.0.1/apollo_modules/modules/common/util/testdata → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/lincoln}/__init__.py +0 -0
  879. {apollo_modules-7.0.1/apollo_modules/modules/common/vehicle_model → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/lincoln/proto}/__init__.py +0 -0
  880. {apollo_modules-7.0.1/apollo_modules/modules/common/vehicle_model/proto → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/neolix_edu}/__init__.py +0 -0
  881. {apollo_modules-7.0.1/apollo_modules/modules/common/vehicle_state → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/neolix_edu/proto}/__init__.py +0 -0
  882. {apollo_modules-7.0.1/apollo_modules/modules/common/vehicle_state/proto → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/transit}/__init__.py +0 -0
  883. {apollo_modules-7.0.1/apollo_modules/modules/contrib → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/transit/proto}/__init__.py +0 -0
  884. {apollo_modules-7.0.1/apollo_modules/modules/contrib/lgsvl_msgs → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/wey}/__init__.py +0 -0
  885. {apollo_modules-7.0.1/apollo_modules/modules/contrib/lgsvl_msgs → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/wey}/proto/__init__.py +0 -0
  886. {apollo_modules-7.0.1/apollo_modules/modules/control → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/zhongyun}/__init__.py +0 -0
  887. {apollo_modules-7.0.1/apollo_modules/modules/control → apollo_modules-9.0.0/apollo_modules/modules/canbus_vehicle/zhongyun}/proto/__init__.py +0 -0
  888. {apollo_modules-7.0.1/apollo_modules/modules/data → apollo_modules-9.0.0/apollo_modules/modules/common}/__init__.py +0 -0
  889. {apollo_modules-7.0.1/apollo_modules/modules/data/proto → apollo_modules-9.0.0/apollo_modules/modules/common/adapters}/__init__.py +0 -0
  890. {apollo_modules-7.0.1/apollo_modules/modules/data/tools → apollo_modules-9.0.0/apollo_modules/modules/common/adapters/proto}/__init__.py +0 -0
  891. {apollo_modules-7.0.1/apollo_modules/modules/data/tools/smart_recorder → apollo_modules-9.0.0/apollo_modules/modules/common/latency_recorder}/__init__.py +0 -0
  892. {apollo_modules-7.0.1/apollo_modules/modules/data/tools/smart_recorder → apollo_modules-9.0.0/apollo_modules/modules/common/latency_recorder}/proto/__init__.py +0 -0
  893. {apollo_modules-7.0.1/apollo_modules/modules/dreamview → apollo_modules-9.0.0/apollo_modules/modules/common/util}/__init__.py +0 -0
  894. {apollo_modules-7.0.1/apollo_modules/modules/dreamview/backend → apollo_modules-9.0.0/apollo_modules/modules/common/util/testdata}/__init__.py +0 -0
  895. {apollo_modules-7.0.1/apollo_modules/modules/dreamview/backend/teleop → apollo_modules-9.0.0/apollo_modules/modules/common/vehicle_model}/__init__.py +0 -0
  896. {apollo_modules-7.0.1/apollo_modules/modules/dreamview/backend/teleop → apollo_modules-9.0.0/apollo_modules/modules/common/vehicle_model}/proto/__init__.py +0 -0
  897. {apollo_modules-7.0.1/apollo_modules/modules/dreamview/proto → apollo_modules-9.0.0/apollo_modules/modules/common/vehicle_state}/__init__.py +0 -0
  898. {apollo_modules-7.0.1/apollo_modules/modules/drivers → apollo_modules-9.0.0/apollo_modules/modules/common/vehicle_state/proto}/__init__.py +0 -0
  899. {apollo_modules-7.0.1/apollo_modules/modules/drivers/camera → apollo_modules-9.0.0/apollo_modules/modules/common_msgs}/__init__.py +0 -0
  900. {apollo_modules-7.0.1/apollo_modules/modules/drivers/camera/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/audio_msgs}/__init__.py +0 -0
  901. {apollo_modules-7.0.1/apollo_modules/modules/drivers/canbus → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/basic_msgs}/__init__.py +0 -0
  902. {apollo_modules-7.0.1/apollo_modules/modules/drivers/canbus/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/chassis_msgs}/__init__.py +0 -0
  903. {apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/config_msgs}/__init__.py +0 -0
  904. {apollo_modules-7.0.1/apollo_modules/modules/drivers/gnss/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/control_msgs}/__init__.py +0 -0
  905. {apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/dreamview_msgs}/__init__.py +0 -0
  906. {apollo_modules-7.0.1/apollo_modules/modules/drivers/lidar/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/drivers_msgs}/__init__.py +0 -0
  907. {apollo_modules-7.0.1/apollo_modules/modules/drivers/microphone → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/external_command_msgs}/__init__.py +0 -0
  908. {apollo_modules-7.0.1/apollo_modules/modules/drivers/microphone/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/guardian_msgs}/__init__.py +0 -0
  909. {apollo_modules-7.0.1/apollo_modules/modules/drivers/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/localization_msgs}/__init__.py +0 -0
  910. {apollo_modules-7.0.1/apollo_modules/modules/drivers/radar → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/map_msgs}/__init__.py +0 -0
  911. {apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/conti_radar → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/monitor_msgs}/__init__.py +0 -0
  912. {apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/conti_radar/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/perception_msgs}/__init__.py +0 -0
  913. {apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/racobit_radar → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/planning_msgs}/__init__.py +0 -0
  914. {apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/racobit_radar/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/prediction_msgs}/__init__.py +0 -0
  915. {apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/ultrasonic_radar → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/routing_msgs}/__init__.py +0 -0
  916. {apollo_modules-7.0.1/apollo_modules/modules/drivers/radar/ultrasonic_radar/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/sensor_msgs}/__init__.py +0 -0
  917. {apollo_modules-7.0.1/apollo_modules/modules/drivers/smartereye → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/simulation_msgs}/__init__.py +0 -0
  918. {apollo_modules-7.0.1/apollo_modules/modules/drivers/smartereye/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/storytelling_msgs}/__init__.py +0 -0
  919. {apollo_modules-7.0.1/apollo_modules/modules/drivers/tools → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/task_manager_msgs}/__init__.py +0 -0
  920. {apollo_modules-7.0.1/apollo_modules/modules/drivers/tools/image_decompress → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/transform_msgs}/__init__.py +0 -0
  921. {apollo_modules-7.0.1/apollo_modules/modules/drivers/tools/image_decompress/proto → apollo_modules-9.0.0/apollo_modules/modules/common_msgs/v2x_msgs}/__init__.py +0 -0
  922. {apollo_modules-7.0.1/apollo_modules/modules/drivers/video → apollo_modules-9.0.0/apollo_modules/modules/contrib}/__init__.py +0 -0
  923. {apollo_modules-7.0.1/apollo_modules/modules/drivers/video/proto → apollo_modules-9.0.0/apollo_modules/modules/contrib/lgsvl_msgs}/__init__.py +0 -0
  924. {apollo_modules-7.0.1/apollo_modules/modules/guardian → apollo_modules-9.0.0/apollo_modules/modules/contrib/lgsvl_msgs/proto}/__init__.py +0 -0
  925. {apollo_modules-7.0.1/apollo_modules/modules/guardian/proto → apollo_modules-9.0.0/apollo_modules/modules/control}/__init__.py +0 -0
  926. {apollo_modules-7.0.1/apollo_modules/modules/localization → apollo_modules-9.0.0/apollo_modules/modules/control/control_component}/__init__.py +0 -0
  927. {apollo_modules-7.0.1/apollo_modules/modules/localization → apollo_modules-9.0.0/apollo_modules/modules/control/control_component}/proto/__init__.py +0 -0
  928. {apollo_modules-7.0.1/apollo_modules/modules/map → apollo_modules-9.0.0/apollo_modules/modules/control/controllers}/__init__.py +0 -0
  929. {apollo_modules-7.0.1/apollo_modules/modules/map/proto → apollo_modules-9.0.0/apollo_modules/modules/control/controllers/demo_control_task}/__init__.py +0 -0
  930. {apollo_modules-7.0.1/apollo_modules/modules/map/relative_map → apollo_modules-9.0.0/apollo_modules/modules/control/controllers/demo_control_task/proto}/__init__.py +0 -0
  931. {apollo_modules-7.0.1/apollo_modules/modules/map/relative_map/proto → apollo_modules-9.0.0/apollo_modules/modules/control/controllers/lat_based_lqr_controller}/__init__.py +0 -0
  932. {apollo_modules-7.0.1/apollo_modules/modules/map/tools → apollo_modules-9.0.0/apollo_modules/modules/control/controllers/lat_based_lqr_controller/proto}/__init__.py +0 -0
  933. {apollo_modules-7.0.1/apollo_modules/modules/map/tools/map_datachecker → apollo_modules-9.0.0/apollo_modules/modules/control/controllers/lon_based_pid_controller}/__init__.py +0 -0
  934. {apollo_modules-7.0.1/apollo_modules/modules/map/tools/map_datachecker → apollo_modules-9.0.0/apollo_modules/modules/control/controllers/lon_based_pid_controller}/proto/__init__.py +0 -0
  935. {apollo_modules-7.0.1/apollo_modules/modules/monitor → apollo_modules-9.0.0/apollo_modules/modules/control/controllers/mpc_controller}/__init__.py +0 -0
  936. {apollo_modules-7.0.1/apollo_modules/modules/monitor → apollo_modules-9.0.0/apollo_modules/modules/control/controllers/mpc_controller}/proto/__init__.py +0 -0
  937. {apollo_modules-7.0.1/apollo_modules/modules/perception → apollo_modules-9.0.0/apollo_modules/modules/data}/__init__.py +0 -0
  938. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera → apollo_modules-9.0.0/apollo_modules/modules/data/proto}/__init__.py +0 -0
  939. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/app → apollo_modules-9.0.0/apollo_modules/modules/data/tools}/__init__.py +0 -0
  940. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/app/proto → apollo_modules-9.0.0/apollo_modules/modules/data/tools/smart_recorder}/__init__.py +0 -0
  941. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/common → apollo_modules-9.0.0/apollo_modules/modules/data/tools/smart_recorder/proto}/__init__.py +0 -0
  942. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/common/proto → apollo_modules-9.0.0/apollo_modules/modules/dreamview}/__init__.py +0 -0
  943. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib → apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend}/__init__.py +0 -0
  944. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/feature_extractor → apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common}/__init__.py +0 -0
  945. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/feature_extractor/tfe → apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/sim_control_manager}/__init__.py +0 -0
  946. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/feature_extractor/tfe → apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/sim_control_manager}/proto/__init__.py +0 -0
  947. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane → apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/teleop}/__init__.py +0 -0
  948. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/common → apollo_modules-9.0.0/apollo_modules/modules/dreamview/backend/common/teleop/proto}/__init__.py +0 -0
  949. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/common → apollo_modules-9.0.0/apollo_modules/modules/dreamview}/proto/__init__.py +0 -0
  950. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/postprocessor → apollo_modules-9.0.0/apollo_modules/modules/dreamview_plus}/__init__.py +0 -0
  951. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/postprocessor/darkSCNN → apollo_modules-9.0.0/apollo_modules/modules/dreamview_plus/proto}/__init__.py +0 -0
  952. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/postprocessor/darkSCNN/proto → apollo_modules-9.0.0/apollo_modules/modules/drivers}/__init__.py +0 -0
  953. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/postprocessor/denseline → apollo_modules-9.0.0/apollo_modules/modules/drivers/camera}/__init__.py +0 -0
  954. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/lane/postprocessor/denseline → apollo_modules-9.0.0/apollo_modules/modules/drivers/camera}/proto/__init__.py +0 -0
  955. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle → apollo_modules-9.0.0/apollo_modules/modules/drivers/canbus}/__init__.py +0 -0
  956. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/detector → apollo_modules-9.0.0/apollo_modules/modules/drivers/canbus/proto}/__init__.py +0 -0
  957. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/detector/smoke → apollo_modules-9.0.0/apollo_modules/modules/drivers/gnss}/__init__.py +0 -0
  958. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/detector/smoke → apollo_modules-9.0.0/apollo_modules/modules/drivers/gnss}/proto/__init__.py +0 -0
  959. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/postprocessor → apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar}/__init__.py +0 -0
  960. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/postprocessor/location_refiner → apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/lslidar}/__init__.py +0 -0
  961. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/postprocessor/location_refiner → apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/lslidar}/proto/__init__.py +0 -0
  962. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/tracker → apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/proto}/__init__.py +0 -0
  963. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/tracker/omt → apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/robosense}/__init__.py +0 -0
  964. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/tracker/omt → apollo_modules-9.0.0/apollo_modules/modules/drivers/lidar/robosense}/proto/__init__.py +0 -0
  965. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/transformer → apollo_modules-9.0.0/apollo_modules/modules/drivers/microphone}/__init__.py +0 -0
  966. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/transformer/multicue → apollo_modules-9.0.0/apollo_modules/modules/drivers/microphone/proto}/__init__.py +0 -0
  967. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/transformer/multicue/proto → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar}/__init__.py +0 -0
  968. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/transformer/singlestage → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/conti_radar}/__init__.py +0 -0
  969. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/obstacle/transformer/singlestage → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/conti_radar}/proto/__init__.py +0 -0
  970. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/oculii_radar}/__init__.py +0 -0
  971. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/detector → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/oculii_radar/proto}/__init__.py +0 -0
  972. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/detector/recognition → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/racobit_radar}/__init__.py +0 -0
  973. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/detector/recognition → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/racobit_radar}/proto/__init__.py +0 -0
  974. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/preprocessor → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/ultrasonic_radar}/__init__.py +0 -0
  975. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/preprocessor → apollo_modules-9.0.0/apollo_modules/modules/drivers/radar/ultrasonic_radar}/proto/__init__.py +0 -0
  976. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/proto → apollo_modules-9.0.0/apollo_modules/modules/drivers/smartereye}/__init__.py +0 -0
  977. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/tracker → apollo_modules-9.0.0/apollo_modules/modules/drivers/smartereye/proto}/__init__.py +0 -0
  978. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/lib/traffic_light/tracker/proto → apollo_modules-9.0.0/apollo_modules/modules/drivers/tools}/__init__.py +0 -0
  979. {apollo_modules-7.0.1/apollo_modules/modules/perception/camera/proto → apollo_modules-9.0.0/apollo_modules/modules/drivers/tools/image_decompress}/__init__.py +0 -0
  980. {apollo_modules-7.0.1/apollo_modules/modules/perception/fusion → apollo_modules-9.0.0/apollo_modules/modules/drivers/tools/image_decompress/proto}/__init__.py +0 -0
  981. {apollo_modules-7.0.1/apollo_modules/modules/perception/fusion/lib → apollo_modules-9.0.0/apollo_modules/modules/drivers/video}/__init__.py +0 -0
  982. {apollo_modules-7.0.1/apollo_modules/modules/perception/fusion/lib/gatekeeper → apollo_modules-9.0.0/apollo_modules/modules/drivers/video/proto}/__init__.py +0 -0
  983. {apollo_modules-7.0.1/apollo_modules/modules/perception/fusion/lib/gatekeeper/pbf_gatekeeper → apollo_modules-9.0.0/apollo_modules/modules/external_command}/__init__.py +0 -0
  984. {apollo_modules-7.0.1/apollo_modules/modules/perception/fusion/lib/gatekeeper/pbf_gatekeeper/proto → apollo_modules-9.0.0/apollo_modules/modules/external_command/command_processor}/__init__.py +0 -0
  985. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar → apollo_modules-9.0.0/apollo_modules/modules/external_command/command_processor/action_command_processor}/__init__.py +0 -0
  986. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/app → apollo_modules-9.0.0/apollo_modules/modules/external_command/command_processor/action_command_processor/proto}/__init__.py +0 -0
  987. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/app/proto → apollo_modules-9.0.0/apollo_modules/modules/external_command/command_processor/command_processor_base}/__init__.py +0 -0
  988. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib → apollo_modules-9.0.0/apollo_modules/modules/external_command/command_processor/command_processor_base/proto}/__init__.py +0 -0
  989. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector → apollo_modules-9.0.0/apollo_modules/modules/external_command/external_command_demo}/__init__.py +0 -0
  990. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation → apollo_modules-9.0.0/apollo_modules/modules/external_command/external_command_demo/proto}/__init__.py +0 -0
  991. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation/proto → apollo_modules-9.0.0/apollo_modules/modules/external_command/old_routing_adapter}/__init__.py +0 -0
  992. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/ncut_segmentation → apollo_modules-9.0.0/apollo_modules/modules/external_command/old_routing_adapter/proto}/__init__.py +0 -0
  993. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/detector/ncut_segmentation/proto → apollo_modules-9.0.0/apollo_modules/modules/external_command/process_component}/__init__.py +0 -0
  994. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/ground_detector → apollo_modules-9.0.0/apollo_modules/modules/external_command/process_component/proto}/__init__.py +0 -0
  995. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/ground_detector/ground_service_detector → apollo_modules-9.0.0/apollo_modules/modules/guardian}/__init__.py +0 -0
  996. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/ground_detector/ground_service_detector → apollo_modules-9.0.0/apollo_modules/modules/guardian}/proto/__init__.py +0 -0
  997. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/ground_detector/spatio_temporal_ground_detector → apollo_modules-9.0.0/apollo_modules/modules/localization}/__init__.py +0 -0
  998. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/ground_detector/spatio_temporal_ground_detector → apollo_modules-9.0.0/apollo_modules/modules/localization}/proto/__init__.py +0 -0
  999. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/object_filter_bank → apollo_modules-9.0.0/apollo_modules/modules/map}/__init__.py +0 -0
  1000. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/object_filter_bank/proto → apollo_modules-9.0.0/apollo_modules/modules/map/relative_map}/__init__.py +0 -0
  1001. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/pointcloud_preprocessor → apollo_modules-9.0.0/apollo_modules/modules/map/relative_map/proto}/__init__.py +0 -0
  1002. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/pointcloud_preprocessor/proto → apollo_modules-9.0.0/apollo_modules/modules/map/tools}/__init__.py +0 -0
  1003. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/roi_filter → apollo_modules-9.0.0/apollo_modules/modules/map/tools/map_datachecker}/__init__.py +0 -0
  1004. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/roi_filter/hdmap_roi_filter → apollo_modules-9.0.0/apollo_modules/modules/map/tools/map_datachecker/proto}/__init__.py +0 -0
  1005. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/roi_filter/hdmap_roi_filter/proto → apollo_modules-9.0.0/apollo_modules/modules/perception}/__init__.py +0 -0
  1006. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_bev}/__init__.py +0 -0
  1007. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager/ground_service → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_bev/detector}/__init__.py +0 -0
  1008. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager/ground_service/proto → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_bev/detector/petr}/__init__.py +0 -0
  1009. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_bev/detector/petr}/proto/__init__.py +0 -0
  1010. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager/roi_service → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_bev/proto}/__init__.py +0 -0
  1011. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/scene_manager/roi_service/proto → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage}/__init__.py +0 -0
  1012. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/tracker → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage/detector}/__init__.py +0 -0
  1013. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/tracker/multi_lidar_fusion → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolo}/__init__.py +0 -0
  1014. {apollo_modules-7.0.1/apollo_modules/modules/perception/lidar/lib/tracker/multi_lidar_fusion → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolo}/proto/__init__.py +0 -0
  1015. {apollo_modules-7.0.1/apollo_modules/modules/perception/onboard → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolox3d}/__init__.py +0 -0
  1016. {apollo_modules-7.0.1/apollo_modules/modules/perception/onboard → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolox3d}/proto/__init__.py +0 -0
  1017. {apollo_modules-7.0.1/apollo_modules/modules/perception → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_multi_stage}/proto/__init__.py +0 -0
  1018. {apollo_modules-7.0.1/apollo_modules/modules/planning → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage}/__init__.py +0 -0
  1019. {apollo_modules-7.0.1/apollo_modules/modules/planning/proto → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage/detector}/__init__.py +0 -0
  1020. {apollo_modules-7.0.1/apollo_modules/modules/planning/proto/math → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage/detector/caddn}/__init__.py +0 -0
  1021. {apollo_modules-7.0.1/apollo_modules/modules/prediction → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage/detector/caddn/proto}/__init__.py +0 -0
  1022. {apollo_modules-7.0.1/apollo_modules/modules/prediction/proto → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage/detector/smoke}/__init__.py +0 -0
  1023. {apollo_modules-7.0.1/apollo_modules/modules/routing → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage/detector/smoke/proto}/__init__.py +0 -0
  1024. {apollo_modules-7.0.1/apollo_modules/modules/routing → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_detection_single_stage}/proto/__init__.py +0 -0
  1025. {apollo_modules-7.0.1/apollo_modules/modules/storytelling → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation}/__init__.py +0 -0
  1026. {apollo_modules-7.0.1/apollo_modules/modules/storytelling → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation}/proto/__init__.py +0 -0
  1027. {apollo_modules-7.0.1/apollo_modules/modules/task_manager → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation/transformer}/__init__.py +0 -0
  1028. {apollo_modules-7.0.1/apollo_modules/modules/task_manager/proto → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation/transformer/multicue}/__init__.py +0 -0
  1029. {apollo_modules-7.0.1/apollo_modules/modules/third_party_perception → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation/transformer/multicue/proto}/__init__.py +0 -0
  1030. {apollo_modules-7.0.1/apollo_modules/modules/third_party_perception/proto → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation/transformer/singlestage}/__init__.py +0 -0
  1031. {apollo_modules-7.0.1/apollo_modules/modules/tools → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_estimation/transformer/singlestage/proto}/__init__.py +0 -0
  1032. {apollo_modules-7.0.1/apollo_modules/modules/tools/navigator → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_refinement}/__init__.py +0 -0
  1033. {apollo_modules-7.0.1/apollo_modules/modules/tools/navigator/dbmap → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_refinement/location_refiner}/__init__.py +0 -0
  1034. {apollo_modules-7.0.1/apollo_modules/modules/tools/navigator/dbmap → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_refinement/location_refiner}/proto/__init__.py +0 -0
  1035. {apollo_modules-7.0.1/apollo_modules/modules/tools/prediction → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_location_refinement/proto}/__init__.py +0 -0
  1036. {apollo_modules-7.0.1/apollo_modules/modules/tools/prediction/data_pipelines → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_tracking}/__init__.py +0 -0
  1037. {apollo_modules-7.0.1/apollo_modules/modules/tools/prediction/data_pipelines/proto → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_tracking/feature_extract}/__init__.py +0 -0
  1038. {apollo_modules-7.0.1/apollo_modules/modules/tools/sensor_calibration → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_tracking/feature_extract/proto}/__init__.py +0 -0
  1039. {apollo_modules-7.0.1/apollo_modules/modules/tools/sensor_calibration → apollo_modules-9.0.0/apollo_modules/modules/perception/camera_tracking}/proto/__init__.py +0 -0
  1040. {apollo_modules-7.0.1/apollo_modules/modules/transform → apollo_modules-9.0.0/apollo_modules/modules/perception/common}/__init__.py +0 -0
  1041. {apollo_modules-7.0.1/apollo_modules/modules/transform/proto → apollo_modules-9.0.0/apollo_modules/modules/perception/common/camera}/__init__.py +0 -0
  1042. {apollo_modules-7.0.1/apollo_modules/modules/v2x → apollo_modules-9.0.0/apollo_modules/modules/perception/common/camera/common}/__init__.py +0 -0
  1043. {apollo_modules-7.0.1/apollo_modules/modules/v2x → apollo_modules-9.0.0/apollo_modules/modules/perception/common/camera/common}/proto/__init__.py +0 -0
  1044. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules.egg-info/dependency_links.txt +0 -0
  1045. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules.egg-info/requires.txt +0 -0
  1046. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/apollo_modules.egg-info/top_level.txt +0 -0
  1047. {apollo_modules-7.0.1 → apollo_modules-9.0.0}/setup.cfg +0 -0
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.1
2
+ Name: apollo_modules
3
+ Version: 9.0.0
4
+ Summary: This is a package including baidu apollo' proto modules
5
+ Home-page: https://github.com/MingfeiCheng/ApolloPyProto
6
+ Author: MingfeiCheng
7
+ Author-email: snowbirds.mf@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: protobuf==3.20.1
14
+
15
+ ## Apollo Python Protobuf
16
+
17
+ This project provides Python bindings for the Apollo modules' protobufs, enabling seamless integration and usage of Apollo’s protobuf definitions in Python.
18
+
19
+ ### Installation
20
+
21
+ #### Option 1: Install via pip
22
+ ```bash
23
+ pip install apollo_modules==[version] # Supported versions: '7.0.0', '8.0.0', '9.0.0'
24
+ ```
25
+ From apollo 8.0, the structure has been changed!
26
+
27
+ #### Option 2: Build from Source
28
+ ```bash
29
+ git clone -b [version] https://github.com/MingfeiCheng/ApolloPyProto.git
30
+ cd ApolloPyProto
31
+ pip install -e .
32
+ ```
33
+
34
+ ### Usage
35
+
36
+ #### 1. Verify Installation
37
+ To verify the installation, open a Python shell and run the following:
38
+ ```python
39
+ python
40
+ >>> import apollo_modules
41
+ >>> from apollo_modules.modules.common_msgs.planning_msgs.planning_pb2 import ADCTrajectory
42
+ ```
43
+ If there are no errors, the installation was successful, and the package is ready to use.
44
+
45
+ #### 2. Example Usage
46
+ Here’s an example of importing the `planning_pb2` protobuf used in Apollo’s planning module:
47
+ ```python
48
+ from apollo_modules.modules.common_msgs.planning_msgs.planning_pb2 import ADCTrajectory
49
+ ```
50
+
51
+ ### (Optional) Generate Python Protobuf Files from the Apollo Project
52
+ We provide a shell script to automatically generate the Python versions of the protobufs from Apollo’s modules. Use the following command:
53
+
54
+ ```bash
55
+ bash proto_generate.sh /path/to/apollo_root /path/to/output
56
+ ```
@@ -0,0 +1,42 @@
1
+ ## Apollo Python Protobuf
2
+
3
+ This project provides Python bindings for the Apollo modules' protobufs, enabling seamless integration and usage of Apollo’s protobuf definitions in Python.
4
+
5
+ ### Installation
6
+
7
+ #### Option 1: Install via pip
8
+ ```bash
9
+ pip install apollo_modules==[version] # Supported versions: '7.0.0', '8.0.0', '9.0.0'
10
+ ```
11
+ From apollo 8.0, the structure has been changed!
12
+
13
+ #### Option 2: Build from Source
14
+ ```bash
15
+ git clone -b [version] https://github.com/MingfeiCheng/ApolloPyProto.git
16
+ cd ApolloPyProto
17
+ pip install -e .
18
+ ```
19
+
20
+ ### Usage
21
+
22
+ #### 1. Verify Installation
23
+ To verify the installation, open a Python shell and run the following:
24
+ ```python
25
+ python
26
+ >>> import apollo_modules
27
+ >>> from apollo_modules.modules.common_msgs.planning_msgs.planning_pb2 import ADCTrajectory
28
+ ```
29
+ If there are no errors, the installation was successful, and the package is ready to use.
30
+
31
+ #### 2. Example Usage
32
+ Here’s an example of importing the `planning_pb2` protobuf used in Apollo’s planning module:
33
+ ```python
34
+ from apollo_modules.modules.common_msgs.planning_msgs.planning_pb2 import ADCTrajectory
35
+ ```
36
+
37
+ ### (Optional) Generate Python Protobuf Files from the Apollo Project
38
+ We provide a shell script to automatically generate the Python versions of the protobufs from Apollo’s modules. Use the following command:
39
+
40
+ ```bash
41
+ bash proto_generate.sh /path/to/apollo_root /path/to/output
42
+ ```
@@ -0,0 +1,44 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: modules/audio/proto/audio_conf.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+
16
+
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$modules/audio/proto/audio_conf.proto\x12\x0c\x61pollo.audio\"\xae\x01\n\tTopicConf\x12\x1d\n\x15\x61udio_data_topic_name\x18\x01 \x01(\t\x12\"\n\x1a\x61udio_detection_topic_name\x18\x02 \x01(\t\x12\x1f\n\x17localization_topic_name\x18\x03 \x01(\t\x12\x1e\n\x16\x61udio_event_topic_name\x18\x04 \x01(\t\x12\x1d\n\x15perception_topic_name\x18\x05 \x01(\t\"[\n\tAudioConf\x12+\n\ntopic_conf\x18\x01 \x01(\x0b\x32\x17.apollo.audio.TopicConf\x12!\n\x19respeaker_extrinsics_path\x18\x02 \x01(\t')
18
+
19
+
20
+
21
+ _TOPICCONF = DESCRIPTOR.message_types_by_name['TopicConf']
22
+ _AUDIOCONF = DESCRIPTOR.message_types_by_name['AudioConf']
23
+ TopicConf = _reflection.GeneratedProtocolMessageType('TopicConf', (_message.Message,), {
24
+ 'DESCRIPTOR' : _TOPICCONF,
25
+ '__module__' : 'modules.audio.proto.audio_conf_pb2'
26
+ # @@protoc_insertion_point(class_scope:apollo.audio.TopicConf)
27
+ })
28
+ _sym_db.RegisterMessage(TopicConf)
29
+
30
+ AudioConf = _reflection.GeneratedProtocolMessageType('AudioConf', (_message.Message,), {
31
+ 'DESCRIPTOR' : _AUDIOCONF,
32
+ '__module__' : 'modules.audio.proto.audio_conf_pb2'
33
+ # @@protoc_insertion_point(class_scope:apollo.audio.AudioConf)
34
+ })
35
+ _sym_db.RegisterMessage(AudioConf)
36
+
37
+ if _descriptor._USE_C_DESCRIPTORS == False:
38
+
39
+ DESCRIPTOR._options = None
40
+ _TOPICCONF._serialized_start=55
41
+ _TOPICCONF._serialized_end=229
42
+ _AUDIOCONF._serialized_start=231
43
+ _AUDIOCONF._serialized_end=322
44
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,44 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: modules/bridge/proto/udp_bridge_remote_info.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+
16
+
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1modules/bridge/proto/udp_bridge_remote_info.proto\x12\rapollo.bridge\"v\n\x19UDPBridgeSenderRemoteInfo\x12\x1c\n\tremote_ip\x18\x01 \x01(\t:\t127.0.0.1\x12\x19\n\x0bremote_port\x18\x02 \x01(\x05:\x04\x38\x39\x30\x30\x12 \n\nproto_name\x18\x03 \x01(\t:\x0cProtoMsgName\"\x8c\x01\n\x1bUDPBridgeReceiverRemoteInfo\x12\x14\n\ntopic_name\x18\x01 \x01(\t:\x00\x12\x17\n\tbind_port\x18\x02 \x01(\x05:\x04\x38\x35\x30\x30\x12 \n\nproto_name\x18\x03 \x01(\t:\x0cProtoMsgName\x12\x1c\n\x0e\x65nable_timeout\x18\x04 \x01(\x08:\x04true')
18
+
19
+
20
+
21
+ _UDPBRIDGESENDERREMOTEINFO = DESCRIPTOR.message_types_by_name['UDPBridgeSenderRemoteInfo']
22
+ _UDPBRIDGERECEIVERREMOTEINFO = DESCRIPTOR.message_types_by_name['UDPBridgeReceiverRemoteInfo']
23
+ UDPBridgeSenderRemoteInfo = _reflection.GeneratedProtocolMessageType('UDPBridgeSenderRemoteInfo', (_message.Message,), {
24
+ 'DESCRIPTOR' : _UDPBRIDGESENDERREMOTEINFO,
25
+ '__module__' : 'modules.bridge.proto.udp_bridge_remote_info_pb2'
26
+ # @@protoc_insertion_point(class_scope:apollo.bridge.UDPBridgeSenderRemoteInfo)
27
+ })
28
+ _sym_db.RegisterMessage(UDPBridgeSenderRemoteInfo)
29
+
30
+ UDPBridgeReceiverRemoteInfo = _reflection.GeneratedProtocolMessageType('UDPBridgeReceiverRemoteInfo', (_message.Message,), {
31
+ 'DESCRIPTOR' : _UDPBRIDGERECEIVERREMOTEINFO,
32
+ '__module__' : 'modules.bridge.proto.udp_bridge_remote_info_pb2'
33
+ # @@protoc_insertion_point(class_scope:apollo.bridge.UDPBridgeReceiverRemoteInfo)
34
+ })
35
+ _sym_db.RegisterMessage(UDPBridgeReceiverRemoteInfo)
36
+
37
+ if _descriptor._USE_C_DESCRIPTORS == False:
38
+
39
+ DESCRIPTOR._options = None
40
+ _UDPBRIDGESENDERREMOTEINFO._serialized_start=68
41
+ _UDPBRIDGESENDERREMOTEINFO._serialized_end=186
42
+ _UDPBRIDGERECEIVERREMOTEINFO._serialized_start=189
43
+ _UDPBRIDGERECEIVERREMOTEINFO._serialized_end=329
44
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: modules/canbus/proto/canbus_conf.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from apollo_modules.modules.common_msgs.drivers_msgs import can_card_parameter_pb2 as modules_dot_common__msgs_dot_drivers__msgs_dot_can__card__parameter__pb2
16
+ from apollo_modules.modules.canbus.proto import vehicle_parameter_pb2 as modules_dot_canbus_dot_proto_dot_vehicle__parameter__pb2
17
+
18
+
19
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&modules/canbus/proto/canbus_conf.proto\x12\rapollo.canbus\x1a\x39modules/common_msgs/drivers_msgs/can_card_parameter.proto\x1a,modules/canbus/proto/vehicle_parameter.proto\"\xf5\x01\n\nCanbusConf\x12:\n\x11vehicle_parameter\x18\x01 \x01(\x0b\x32\x1f.apollo.canbus.VehicleParameter\x12\x43\n\x12\x63\x61n_card_parameter\x18\x02 \x01(\x0b\x32\'.apollo.drivers.canbus.CANCardParameter\x12 \n\x11\x65nable_debug_mode\x18\x03 \x01(\x08:\x05\x66\x61lse\x12\"\n\x13\x65nable_receiver_log\x18\x04 \x01(\x08:\x05\x66\x61lse\x12 \n\x11\x65nable_sender_log\x18\x05 \x01(\x08:\x05\x66\x61lse')
20
+
21
+
22
+
23
+ _CANBUSCONF = DESCRIPTOR.message_types_by_name['CanbusConf']
24
+ CanbusConf = _reflection.GeneratedProtocolMessageType('CanbusConf', (_message.Message,), {
25
+ 'DESCRIPTOR' : _CANBUSCONF,
26
+ '__module__' : 'modules.canbus.proto.canbus_conf_pb2'
27
+ # @@protoc_insertion_point(class_scope:apollo.canbus.CanbusConf)
28
+ })
29
+ _sym_db.RegisterMessage(CanbusConf)
30
+
31
+ if _descriptor._USE_C_DESCRIPTORS == False:
32
+
33
+ DESCRIPTOR._options = None
34
+ _CANBUSCONF._serialized_start=163
35
+ _CANBUSCONF._serialized_end=408
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: modules/canbus/proto/vehicle_parameter.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from apollo_modules.modules.common_msgs.chassis_msgs import chassis_pb2 as modules_dot_common__msgs_dot_chassis__msgs_dot_chassis__pb2
16
+ from apollo_modules.modules.common_msgs.config_msgs import vehicle_config_pb2 as modules_dot_common__msgs_dot_config__msgs_dot_vehicle__config__pb2
17
+
18
+
19
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,modules/canbus/proto/vehicle_parameter.proto\x12\rapollo.canbus\x1a.modules/common_msgs/chassis_msgs/chassis.proto\x1a\x34modules/common_msgs/config_msgs/vehicle_config.proto\"\xb3\x01\n\x10VehicleParameter\x12*\n\x05\x62rand\x18\x01 \x01(\x0e\x32\x1b.apollo.common.VehicleBrand\x12\x18\n\x10max_engine_pedal\x18\x02 \x01(\x01\x12\x1f\n\x17max_enable_fail_attempt\x18\x03 \x01(\x05\x12\x38\n\x0c\x64riving_mode\x18\x04 \x01(\x0e\x32\".apollo.canbus.Chassis.DrivingMode')
20
+
21
+
22
+
23
+ _VEHICLEPARAMETER = DESCRIPTOR.message_types_by_name['VehicleParameter']
24
+ VehicleParameter = _reflection.GeneratedProtocolMessageType('VehicleParameter', (_message.Message,), {
25
+ 'DESCRIPTOR' : _VEHICLEPARAMETER,
26
+ '__module__' : 'modules.canbus.proto.vehicle_parameter_pb2'
27
+ # @@protoc_insertion_point(class_scope:apollo.canbus.VehicleParameter)
28
+ })
29
+ _sym_db.RegisterMessage(VehicleParameter)
30
+
31
+ if _descriptor._USE_C_DESCRIPTORS == False:
32
+
33
+ DESCRIPTOR._options = None
34
+ _VEHICLEPARAMETER._serialized_start=166
35
+ _VEHICLEPARAMETER._serialized_end=345
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,348 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: modules/canbus_vehicle/ch/proto/ch.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+
16
+
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n(modules/canbus_vehicle/ch/proto/ch.proto\x12\rapollo.canbus\"\xf7\x01\n\x14Throttle_command_110\x12^\n\x16throttle_pedal_en_ctrl\x18\x01 \x01(\x0e\x32>.apollo.canbus.Throttle_command_110.Throttle_pedal_en_ctrlType\x12\x1a\n\x12throttle_pedal_cmd\x18\x02 \x01(\x05\"c\n\x1aThrottle_pedal_en_ctrlType\x12\"\n\x1eTHROTTLE_PEDAL_EN_CTRL_DISABLE\x10\x00\x12!\n\x1dTHROTTLE_PEDAL_EN_CTRL_ENABLE\x10\x01\"\xdf\x01\n\x11\x42rake_command_111\x12U\n\x13\x62rake_pedal_en_ctrl\x18\x01 \x01(\x0e\x32\x38.apollo.canbus.Brake_command_111.Brake_pedal_en_ctrlType\x12\x17\n\x0f\x62rake_pedal_cmd\x18\x02 \x01(\x05\"Z\n\x17\x42rake_pedal_en_ctrlType\x12\x1f\n\x1b\x42RAKE_PEDAL_EN_CTRL_DISABLE\x10\x00\x12\x1e\n\x1a\x42RAKE_PEDAL_EN_CTRL_ENABLE\x10\x01\"\xdf\x01\n\x11Steer_command_112\x12U\n\x13steer_angle_en_ctrl\x18\x01 \x01(\x0e\x32\x38.apollo.canbus.Steer_command_112.Steer_angle_en_ctrlType\x12\x17\n\x0fsteer_angle_cmd\x18\x02 \x01(\x01\"Z\n\x17Steer_angle_en_ctrlType\x12\x1f\n\x1bSTEER_ANGLE_EN_CTRL_DISABLE\x10\x00\x12\x1e\n\x1aSTEER_ANGLE_EN_CTRL_ENABLE\x10\x01\"\x8c\x03\n\x16Turnsignal_command_113\x12R\n\x0fturn_signal_cmd\x18\x01 \x01(\x0e\x32\x39.apollo.canbus.Turnsignal_command_113.Turn_signal_cmdType\x12L\n\x0clow_beam_cmd\x18\x02 \x01(\x0e\x32\x36.apollo.canbus.Turnsignal_command_113.Low_beam_cmdType\"=\n\x10Low_beam_cmdType\x12\x14\n\x10LOW_BEAM_CMD_OFF\x10\x00\x12\x13\n\x0fLOW_BEAM_CMD_ON\x10\x01\"\x90\x01\n\x13Turn_signal_cmdType\x12\x18\n\x14TURN_SIGNAL_CMD_NONE\x10\x00\x12\x18\n\x14TURN_SIGNAL_CMD_LEFT\x10\x01\x12\x19\n\x15TURN_SIGNAL_CMD_RIGHT\x10\x02\x12*\n&TURN_SIGNAL_CMD_HAZARD_WARNING_LAMPSTS\x10\x03\"\xb5\x01\n\x10Gear_command_114\x12>\n\x08gear_cmd\x18\x01 \x01(\x0e\x32,.apollo.canbus.Gear_command_114.Gear_cmdType\"a\n\x0cGear_cmdType\x12\x11\n\rGEAR_CMD_PARK\x10\x01\x12\x14\n\x10GEAR_CMD_REVERSE\x10\x02\x12\x14\n\x10GEAR_CMD_NEUTRAL\x10\x03\x12\x12\n\x0eGEAR_CMD_DRIVE\x10\x04\"\xa1\x01\n\x13\x43ontrol_command_115\x12\x41\n\x08\x63trl_cmd\x18\x01 \x01(\x0e\x32/.apollo.canbus.Control_command_115.Ctrl_cmdType\"G\n\x0c\x43trl_cmdType\x12\x1b\n\x17\x43TRL_CMD_OUT_OF_CONTROL\x10\x00\x12\x1a\n\x16\x43TRL_CMD_UNDER_CONTROL\x10\x01\"\xbc\x01\n\x18Vehicle_mode_command_116\x12L\n\x0bvin_req_cmd\x18\x01 \x01(\x0e\x32\x37.apollo.canbus.Vehicle_mode_command_116.Vin_req_cmdType\"R\n\x0fVin_req_cmdType\x12\x1f\n\x1bVIN_REQ_CMD_VIN_REQ_DISABLE\x10\x00\x12\x1e\n\x1aVIN_REQ_CMD_VIN_REQ_ENABLE\x10\x01\"\xe3\x04\n\x14Throttle_status__510\x12\\\n\x15throttle_pedal_en_sts\x18\x01 \x01(\x0e\x32=.apollo.canbus.Throttle_status__510.Throttle_pedal_en_stsType\x12\x1a\n\x12throttle_pedal_sts\x18\x02 \x01(\x05\x12P\n\x0f\x64rive_motor_err\x18\x03 \x01(\x0e\x32\x37.apollo.canbus.Throttle_status__510.Drive_motor_errType\x12P\n\x0f\x62\x61ttery_bms_err\x18\x04 \x01(\x0e\x32\x37.apollo.canbus.Throttle_status__510.Battery_bms_errType\"\x84\x01\n\x19Throttle_pedal_en_stsType\x12!\n\x1dTHROTTLE_PEDAL_EN_STS_DISABLE\x10\x00\x12 \n\x1cTHROTTLE_PEDAL_EN_STS_ENABLE\x10\x01\x12\"\n\x1eTHROTTLE_PEDAL_EN_STS_TAKEOVER\x10\x02\"S\n\x13\x44rive_motor_errType\x12\x19\n\x15\x44RIVE_MOTOR_ERR_NOERR\x10\x00\x12!\n\x1d\x44RIVE_MOTOR_ERR_DRV_MOTOR_ERR\x10\x01\"Q\n\x13\x42\x61ttery_bms_errType\x12\x19\n\x15\x42\x41TTERY_BMS_ERR_NOERR\x10\x00\x12\x1f\n\x1b\x42\x41TTERY_BMS_ERR_BATTERY_ERR\x10\x01\"\xc3\t\n\x11\x42rake_status__511\x12S\n\x12\x62rake_pedal_en_sts\x18\x01 \x01(\x0e\x32\x37.apollo.canbus.Brake_status__511.Brake_pedal_en_stsType\x12\x17\n\x0f\x62rake_pedal_sts\x18\x02 \x01(\x05\x12\x41\n\tbrake_err\x18\x03 \x01(\x0e\x32..apollo.canbus.Brake_status__511.Brake_errType\x12Q\n\x11\x65mergency_btn_env\x18\x04 \x01(\x0e\x32\x36.apollo.canbus.Brake_status__511.Emergency_btn_envType\x12K\n\x0e\x66ront_bump_env\x18\x05 \x01(\x0e\x32\x33.apollo.canbus.Brake_status__511.Front_bump_envType\x12I\n\rback_bump_env\x18\x06 \x01(\x0e\x32\x32.apollo.canbus.Brake_status__511.Back_bump_envType\x12\x45\n\x0boverspd_env\x18\x07 \x01(\x0e\x32\x30.apollo.canbus.Brake_status__511.Overspd_envType\x12S\n\x12\x62rake_light_actual\x18\x08 \x01(\x0e\x32\x37.apollo.canbus.Brake_status__511.Brake_light_actualType\"G\n\x0fOverspd_envType\x12\x15\n\x11OVERSPD_ENV_NOENV\x10\x00\x12\x1d\n\x19OVERSPD_ENV_OVERSPEED_ENV\x10\x01\"x\n\x16\x42rake_pedal_en_stsType\x12\x1e\n\x1a\x42RAKE_PEDAL_EN_STS_DISABLE\x10\x00\x12\x1d\n\x19\x42RAKE_PEDAL_EN_STS_ENABLE\x10\x01\x12\x1f\n\x1b\x42RAKE_PEDAL_EN_STS_TAKEOVER\x10\x02\"D\n\rBrake_errType\x12\x13\n\x0f\x42RAKE_ERR_NOERR\x10\x00\x12\x1e\n\x1a\x42RAKE_ERR_BRAKE_SYSTEM_ERR\x10\x01\"`\n\x15\x45mergency_btn_envType\x12\x1b\n\x17\x45MERGENCY_BTN_ENV_NOENV\x10\x00\x12*\n&EMERGENCY_BTN_ENV_EMERGENCY_BUTTON_ENV\x10\x01\"S\n\x12\x46ront_bump_envType\x12\x18\n\x14\x46RONT_BUMP_ENV_NOENV\x10\x00\x12#\n\x1f\x46RONT_BUMP_ENV_FRONT_BUMPER_ENV\x10\x01\"O\n\x11\x42\x61\x63k_bump_envType\x12\x17\n\x13\x42\x41\x43K_BUMP_ENV_NOENV\x10\x00\x12!\n\x1d\x42\x41\x43K_BUMP_ENV_BACK_BUMPER_ENV\x10\x01\"e\n\x16\x42rake_light_actualType\x12%\n!BRAKE_LIGHT_ACTUAL_BRAKELIGHT_OFF\x10\x00\x12$\n BRAKE_LIGHT_ACTUAL_BRAKELIGHT_ON\x10\x01\"\x91\x04\n\x11Steer_status__512\x12S\n\x12steer_angle_en_sts\x18\x01 \x01(\x0e\x32\x37.apollo.canbus.Steer_status__512.Steer_angle_en_stsType\x12\x17\n\x0fsteer_angle_sts\x18\x02 \x01(\x01\x12\x41\n\tsteer_err\x18\x03 \x01(\x0e\x32..apollo.canbus.Steer_status__512.Steer_errType\x12\x43\n\nsensor_err\x18\x04 \x01(\x0e\x32/.apollo.canbus.Steer_status__512.Sensor_errType\"x\n\x16Steer_angle_en_stsType\x12\x1e\n\x1aSTEER_ANGLE_EN_STS_DISABLE\x10\x00\x12\x1d\n\x19STEER_ANGLE_EN_STS_ENABLE\x10\x01\x12\x1f\n\x1bSTEER_ANGLE_EN_STS_TAKEOVER\x10\x02\"C\n\rSteer_errType\x12\x13\n\x0fSTEER_ERR_NOERR\x10\x00\x12\x1d\n\x19STEER_ERR_STEER_MOTOR_ERR\x10\x01\"G\n\x0eSensor_errType\x12\x14\n\x10SENSOR_ERR_NOERR\x10\x00\x12\x1f\n\x1bSENSOR_ERR_STEER_SENSOR_ERR\x10\x01\"\x8f\x03\n\x16Turnsignal_status__513\x12R\n\x0fturn_signal_sts\x18\x01 \x01(\x0e\x32\x39.apollo.canbus.Turnsignal_status__513.Turn_signal_stsType\x12L\n\x0clow_beam_sts\x18\x02 \x01(\x0e\x32\x36.apollo.canbus.Turnsignal_status__513.Low_beam_stsType\"=\n\x10Low_beam_stsType\x12\x13\n\x0fLOW_BEAM_STS_ON\x10\x00\x12\x14\n\x10LOW_BEAM_STS_OFF\x10\x01\"\x93\x01\n\x13Turn_signal_stsType\x12\x18\n\x14TURN_SIGNAL_STS_NONE\x10\x00\x12\x18\n\x14TURN_SIGNAL_STS_LEFT\x10\x01\x12\x19\n\x15TURN_SIGNAL_STS_RIGHT\x10\x02\x12-\n)TURN_SIGNAL_STS_HAZARD_WARNING_LAMPSTS_ON\x10\x03\"\xb3\x01\n\x0fGear_status_514\x12=\n\x08gear_sts\x18\x01 \x01(\x0e\x32+.apollo.canbus.Gear_status_514.Gear_stsType\"a\n\x0cGear_stsType\x12\x11\n\rGEAR_STS_PARK\x10\x01\x12\x14\n\x10GEAR_STS_REVERSE\x10\x02\x12\x14\n\x10GEAR_STS_NEUTRAL\x10\x03\x12\x12\n\x0eGEAR_STS_DRIVE\x10\x04\"\x90\r\n\x10\x45\x63u_status_1_515\x12\r\n\x05speed\x18\x01 \x01(\x01\x12\x11\n\tacc_speed\x18\x02 \x01(\x01\x12>\n\x08\x63trl_sts\x18\x03 \x01(\x0e\x32,.apollo.canbus.Ecu_status_1_515.Ctrl_stsType\x12\x13\n\x0b\x63hassis_sts\x18\x04 \x01(\x05\x12\x13\n\x0b\x63hassis_err\x18\x05 \x01(\x05\x12L\n\x0f\x63hassis_mcu_err\x18\x06 \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_mcu_errType\x12L\n\x0f\x63hassis_mcu_can\x18\x07 \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_mcu_canType\x12L\n\x0f\x63hassis_hw_lost\x18\x08 \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_hw_lostType\x12L\n\x0f\x63hassis_eps_err\x18\t \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_eps_errType\x12L\n\x0f\x63hassis_eps_can\x18\n \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_eps_canType\x12L\n\x0f\x63hassis_ehb_err\x18\x0b \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_ehb_errType\x12L\n\x0f\x63hassis_ehb_can\x18\x0c \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_ehb_canType\x12L\n\x0f\x63hassis_bms_can\x18\r \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_bms_canType\x12L\n\x0f\x63hassis_ads_err\x18\x0e \x01(\x0e\x32\x33.apollo.canbus.Ecu_status_1_515.Chassis_ads_errType\"G\n\x0c\x43trl_stsType\x12\x1b\n\x17\x43TRL_STS_OUT_OF_CONTROL\x10\x00\x12\x1a\n\x16\x43TRL_STS_UNDER_CONTROL\x10\x01\"L\n\x13\x43hassis_mcu_errType\x12\x1a\n\x16\x43HASSIS_MCU_ERR_NORMAL\x10\x00\x12\x19\n\x15\x43HASSIS_MCU_ERR_ERROR\x10\x01\"L\n\x13\x43hassis_mcu_canType\x12\x1a\n\x16\x43HASSIS_MCU_CAN_NORMAL\x10\x00\x12\x19\n\x15\x43HASSIS_MCU_CAN_ERROR\x10\x01\"L\n\x13\x43hassis_hw_lostType\x12\x1a\n\x16\x43HASSIS_HW_LOST_NORMAL\x10\x00\x12\x19\n\x15\x43HASSIS_HW_LOST_ERROR\x10\x01\"L\n\x13\x43hassis_eps_errType\x12\x1a\n\x16\x43HASSIS_EPS_ERR_NORMAL\x10\x00\x12\x19\n\x15\x43HASSIS_EPS_ERR_ERROR\x10\x01\"L\n\x13\x43hassis_eps_canType\x12\x1a\n\x16\x43HASSIS_EPS_CAN_NORMAL\x10\x00\x12\x19\n\x15\x43HASSIS_EPS_CAN_ERROR\x10\x01\"L\n\x13\x43hassis_ehb_errType\x12\x1a\n\x16\x43HASSIS_EHB_ERR_NORMAL\x10\x00\x12\x19\n\x15\x43HASSIS_EHB_ERR_ERROR\x10\x01\"L\n\x13\x43hassis_ehb_canType\x12\x1a\n\x16\x43HASSIS_EHB_CAN_NORMAL\x10\x00\x12\x19\n\x15\x43HASSIS_EHB_CAN_ERROR\x10\x01\"L\n\x13\x43hassis_bms_canType\x12\x1a\n\x16\x43HASSIS_BMS_CAN_NORMAL\x10\x00\x12\x19\n\x15\x43HASSIS_BMS_CAN_ERROR\x10\x01\"y\n\x13\x43hassis_ads_errType\x12\x1a\n\x16\x43HASSIS_ADS_ERR_NORMAL\x10\x00\x12 \n\x1c\x43HASSIS_ADS_ERR_ADS_CAN_LOST\x10\x01\x12$\n CHASSIS_ADS_ERR_ADS_CAN_RECOVERY\x10\x02\"\xac\x01\n\x10\x45\x63u_status_2_516\x12\x13\n\x0b\x62\x61ttery_soc\x18\x01 \x01(\x05\x12\x18\n\x10\x62\x61ttery_capacity\x18\x02 \x01(\x05\x12\x17\n\x0f\x62\x61ttery_voltage\x18\x03 \x01(\x01\x12\x17\n\x0f\x62\x61ttery_current\x18\x04 \x01(\x01\x12\x1b\n\x13\x62\x61ttery_temperature\x18\x05 \x01(\x05\x12\x1a\n\x12is_battery_soc_low\x18\x06 \x01(\x08\"\xea\x01\n\x10\x45\x63u_status_3_517\x12\x19\n\x11ultrasound_dist_1\x18\x01 \x01(\x01\x12\x19\n\x11ultrasound_dist_2\x18\x02 \x01(\x01\x12\x19\n\x11ultrasound_dist_3\x18\x03 \x01(\x01\x12\x19\n\x11ultrasound_dist_4\x18\x04 \x01(\x01\x12\x19\n\x11ultrasound_dist_5\x18\x05 \x01(\x01\x12\x19\n\x11ultrasound_dist_6\x18\x06 \x01(\x01\x12\x19\n\x11ultrasound_dist_7\x18\x07 \x01(\x01\x12\x19\n\x11ultrasound_dist_8\x18\x08 \x01(\x01\"\xf1\x01\n\x10\x45\x63u_status_4_518\x12\x19\n\x11ultrasound_dist_9\x18\x01 \x01(\x01\x12\x1a\n\x12ultrasound_dist_10\x18\x02 \x01(\x01\x12\x1a\n\x12ultrasound_dist_11\x18\x03 \x01(\x01\x12\x1a\n\x12ultrasound_dist_12\x18\x04 \x01(\x01\x12\x1a\n\x12ultrasound_dist_13\x18\x05 \x01(\x01\x12\x1a\n\x12ultrasound_dist_14\x18\x06 \x01(\x01\x12\x1a\n\x12ultrasound_dist_15\x18\x07 \x01(\x01\x12\x1a\n\x12ultrasound_dist_16\x18\x08 \x01(\x01\"\x87\x01\n\rVin_resp1_51b\x12\r\n\x05vin08\x18\x01 \x01(\t\x12\r\n\x05vin07\x18\x02 \x01(\t\x12\r\n\x05vin06\x18\x03 \x01(\t\x12\r\n\x05vin05\x18\x04 \x01(\t\x12\r\n\x05vin04\x18\x05 \x01(\t\x12\r\n\x05vin03\x18\x06 \x01(\t\x12\r\n\x05vin02\x18\x07 \x01(\t\x12\r\n\x05vin01\x18\x08 \x01(\t\"\x87\x01\n\rVin_resp2_51c\x12\r\n\x05vin16\x18\x01 \x01(\t\x12\r\n\x05vin15\x18\x02 \x01(\t\x12\r\n\x05vin14\x18\x03 \x01(\t\x12\r\n\x05vin13\x18\x04 \x01(\t\x12\r\n\x05vin12\x18\x05 \x01(\t\x12\r\n\x05vin11\x18\x06 \x01(\t\x12\r\n\x05vin10\x18\x07 \x01(\t\x12\r\n\x05vin09\x18\x08 \x01(\t\"\x1e\n\rVin_resp3_51d\x12\r\n\x05vin17\x18\x01 \x01(\t\"G\n\x15Wheelspeed_report_51e\x12\n\n\x02rr\x18\x01 \x01(\x01\x12\n\n\x02rl\x18\x02 \x01(\x01\x12\n\n\x02\x66r\x18\x03 \x01(\x01\x12\n\n\x02\x66l\x18\x04 \x01(\x01\"\xeb\x01\n\x13\x43heckResponseSignal\x12\x1c\n\ris_eps_online\x18\x01 \x01(\x08:\x05\x66\x61lse\x12\x1c\n\ris_epb_online\x18\x02 \x01(\x08:\x05\x66\x61lse\x12\x1c\n\ris_esp_online\x18\x03 \x01(\x08:\x05\x66\x61lse\x12\x1d\n\x0eis_vtog_online\x18\x04 \x01(\x08:\x05\x66\x61lse\x12\x1c\n\ris_scu_online\x18\x05 \x01(\x08:\x05\x66\x61lse\x12\x1f\n\x10is_switch_online\x18\x06 \x01(\x08:\x05\x66\x61lse\x12\x1c\n\ris_vcu_online\x18\x07 \x01(\x08:\x05\x66\x61lse\"\x9c\n\n\x02\x43h\x12\x41\n\x14throttle_command_110\x18\x01 \x01(\x0b\x32#.apollo.canbus.Throttle_command_110\x12;\n\x11\x62rake_command_111\x18\x02 \x01(\x0b\x32 .apollo.canbus.Brake_command_111\x12;\n\x11steer_command_112\x18\x03 \x01(\x0b\x32 .apollo.canbus.Steer_command_112\x12\x45\n\x16turnsignal_command_113\x18\x04 \x01(\x0b\x32%.apollo.canbus.Turnsignal_command_113\x12\x39\n\x10gear_command_114\x18\x05 \x01(\x0b\x32\x1f.apollo.canbus.Gear_command_114\x12\x43\n\x13\x63ontrol_command_115\x18\x06 \x01(\x0b\x32\".apollo.canbus.Control_command_115B\x02\x18\x01\x12\x41\n\x14throttle_status__510\x18\x07 \x01(\x0b\x32#.apollo.canbus.Throttle_status__510\x12;\n\x11\x62rake_status__511\x18\x08 \x01(\x0b\x32 .apollo.canbus.Brake_status__511\x12;\n\x11steer_status__512\x18\t \x01(\x0b\x32 .apollo.canbus.Steer_status__512\x12\x45\n\x16turnsignal_status__513\x18\n \x01(\x0b\x32%.apollo.canbus.Turnsignal_status__513\x12\x37\n\x0fgear_status_514\x18\x0b \x01(\x0b\x32\x1e.apollo.canbus.Gear_status_514\x12\x39\n\x10\x65\x63u_status_1_515\x18\x0c \x01(\x0b\x32\x1f.apollo.canbus.Ecu_status_1_515\x12\x39\n\x10\x65\x63u_status_2_516\x18\r \x01(\x0b\x32\x1f.apollo.canbus.Ecu_status_2_516\x12\x39\n\x10\x65\x63u_status_3_517\x18\x0e \x01(\x0b\x32\x1f.apollo.canbus.Ecu_status_3_517\x12\x39\n\x10\x65\x63u_status_4_518\x18\x0f \x01(\x0b\x32\x1f.apollo.canbus.Ecu_status_4_518\x12I\n\x18vehicle_mode_command_116\x18\x10 \x01(\x0b\x32\'.apollo.canbus.Vehicle_mode_command_116\x12\x33\n\rvin_resp1_51b\x18\x11 \x01(\x0b\x32\x1c.apollo.canbus.Vin_resp1_51b\x12\x33\n\rvin_resp2_51c\x18\x12 \x01(\x0b\x32\x1c.apollo.canbus.Vin_resp2_51c\x12\x33\n\rvin_resp3_51d\x18\x13 \x01(\x0b\x32\x1c.apollo.canbus.Vin_resp3_51d\x12\x43\n\x15wheelspeed_report_51e\x18\x14 \x01(\x0b\x32$.apollo.canbus.Wheelspeed_report_51e\x12:\n\x0e\x63heck_response\x18\x64 \x01(\x0b\x32\".apollo.canbus.CheckResponseSignal')
18
+
19
+
20
+
21
+ _THROTTLE_COMMAND_110 = DESCRIPTOR.message_types_by_name['Throttle_command_110']
22
+ _BRAKE_COMMAND_111 = DESCRIPTOR.message_types_by_name['Brake_command_111']
23
+ _STEER_COMMAND_112 = DESCRIPTOR.message_types_by_name['Steer_command_112']
24
+ _TURNSIGNAL_COMMAND_113 = DESCRIPTOR.message_types_by_name['Turnsignal_command_113']
25
+ _GEAR_COMMAND_114 = DESCRIPTOR.message_types_by_name['Gear_command_114']
26
+ _CONTROL_COMMAND_115 = DESCRIPTOR.message_types_by_name['Control_command_115']
27
+ _VEHICLE_MODE_COMMAND_116 = DESCRIPTOR.message_types_by_name['Vehicle_mode_command_116']
28
+ _THROTTLE_STATUS__510 = DESCRIPTOR.message_types_by_name['Throttle_status__510']
29
+ _BRAKE_STATUS__511 = DESCRIPTOR.message_types_by_name['Brake_status__511']
30
+ _STEER_STATUS__512 = DESCRIPTOR.message_types_by_name['Steer_status__512']
31
+ _TURNSIGNAL_STATUS__513 = DESCRIPTOR.message_types_by_name['Turnsignal_status__513']
32
+ _GEAR_STATUS_514 = DESCRIPTOR.message_types_by_name['Gear_status_514']
33
+ _ECU_STATUS_1_515 = DESCRIPTOR.message_types_by_name['Ecu_status_1_515']
34
+ _ECU_STATUS_2_516 = DESCRIPTOR.message_types_by_name['Ecu_status_2_516']
35
+ _ECU_STATUS_3_517 = DESCRIPTOR.message_types_by_name['Ecu_status_3_517']
36
+ _ECU_STATUS_4_518 = DESCRIPTOR.message_types_by_name['Ecu_status_4_518']
37
+ _VIN_RESP1_51B = DESCRIPTOR.message_types_by_name['Vin_resp1_51b']
38
+ _VIN_RESP2_51C = DESCRIPTOR.message_types_by_name['Vin_resp2_51c']
39
+ _VIN_RESP3_51D = DESCRIPTOR.message_types_by_name['Vin_resp3_51d']
40
+ _WHEELSPEED_REPORT_51E = DESCRIPTOR.message_types_by_name['Wheelspeed_report_51e']
41
+ _CHECKRESPONSESIGNAL = DESCRIPTOR.message_types_by_name['CheckResponseSignal']
42
+ _CH = DESCRIPTOR.message_types_by_name['Ch']
43
+ _THROTTLE_COMMAND_110_THROTTLE_PEDAL_EN_CTRLTYPE = _THROTTLE_COMMAND_110.enum_types_by_name['Throttle_pedal_en_ctrlType']
44
+ _BRAKE_COMMAND_111_BRAKE_PEDAL_EN_CTRLTYPE = _BRAKE_COMMAND_111.enum_types_by_name['Brake_pedal_en_ctrlType']
45
+ _STEER_COMMAND_112_STEER_ANGLE_EN_CTRLTYPE = _STEER_COMMAND_112.enum_types_by_name['Steer_angle_en_ctrlType']
46
+ _TURNSIGNAL_COMMAND_113_LOW_BEAM_CMDTYPE = _TURNSIGNAL_COMMAND_113.enum_types_by_name['Low_beam_cmdType']
47
+ _TURNSIGNAL_COMMAND_113_TURN_SIGNAL_CMDTYPE = _TURNSIGNAL_COMMAND_113.enum_types_by_name['Turn_signal_cmdType']
48
+ _GEAR_COMMAND_114_GEAR_CMDTYPE = _GEAR_COMMAND_114.enum_types_by_name['Gear_cmdType']
49
+ _CONTROL_COMMAND_115_CTRL_CMDTYPE = _CONTROL_COMMAND_115.enum_types_by_name['Ctrl_cmdType']
50
+ _VEHICLE_MODE_COMMAND_116_VIN_REQ_CMDTYPE = _VEHICLE_MODE_COMMAND_116.enum_types_by_name['Vin_req_cmdType']
51
+ _THROTTLE_STATUS__510_THROTTLE_PEDAL_EN_STSTYPE = _THROTTLE_STATUS__510.enum_types_by_name['Throttle_pedal_en_stsType']
52
+ _THROTTLE_STATUS__510_DRIVE_MOTOR_ERRTYPE = _THROTTLE_STATUS__510.enum_types_by_name['Drive_motor_errType']
53
+ _THROTTLE_STATUS__510_BATTERY_BMS_ERRTYPE = _THROTTLE_STATUS__510.enum_types_by_name['Battery_bms_errType']
54
+ _BRAKE_STATUS__511_OVERSPD_ENVTYPE = _BRAKE_STATUS__511.enum_types_by_name['Overspd_envType']
55
+ _BRAKE_STATUS__511_BRAKE_PEDAL_EN_STSTYPE = _BRAKE_STATUS__511.enum_types_by_name['Brake_pedal_en_stsType']
56
+ _BRAKE_STATUS__511_BRAKE_ERRTYPE = _BRAKE_STATUS__511.enum_types_by_name['Brake_errType']
57
+ _BRAKE_STATUS__511_EMERGENCY_BTN_ENVTYPE = _BRAKE_STATUS__511.enum_types_by_name['Emergency_btn_envType']
58
+ _BRAKE_STATUS__511_FRONT_BUMP_ENVTYPE = _BRAKE_STATUS__511.enum_types_by_name['Front_bump_envType']
59
+ _BRAKE_STATUS__511_BACK_BUMP_ENVTYPE = _BRAKE_STATUS__511.enum_types_by_name['Back_bump_envType']
60
+ _BRAKE_STATUS__511_BRAKE_LIGHT_ACTUALTYPE = _BRAKE_STATUS__511.enum_types_by_name['Brake_light_actualType']
61
+ _STEER_STATUS__512_STEER_ANGLE_EN_STSTYPE = _STEER_STATUS__512.enum_types_by_name['Steer_angle_en_stsType']
62
+ _STEER_STATUS__512_STEER_ERRTYPE = _STEER_STATUS__512.enum_types_by_name['Steer_errType']
63
+ _STEER_STATUS__512_SENSOR_ERRTYPE = _STEER_STATUS__512.enum_types_by_name['Sensor_errType']
64
+ _TURNSIGNAL_STATUS__513_LOW_BEAM_STSTYPE = _TURNSIGNAL_STATUS__513.enum_types_by_name['Low_beam_stsType']
65
+ _TURNSIGNAL_STATUS__513_TURN_SIGNAL_STSTYPE = _TURNSIGNAL_STATUS__513.enum_types_by_name['Turn_signal_stsType']
66
+ _GEAR_STATUS_514_GEAR_STSTYPE = _GEAR_STATUS_514.enum_types_by_name['Gear_stsType']
67
+ _ECU_STATUS_1_515_CTRL_STSTYPE = _ECU_STATUS_1_515.enum_types_by_name['Ctrl_stsType']
68
+ _ECU_STATUS_1_515_CHASSIS_MCU_ERRTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_mcu_errType']
69
+ _ECU_STATUS_1_515_CHASSIS_MCU_CANTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_mcu_canType']
70
+ _ECU_STATUS_1_515_CHASSIS_HW_LOSTTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_hw_lostType']
71
+ _ECU_STATUS_1_515_CHASSIS_EPS_ERRTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_eps_errType']
72
+ _ECU_STATUS_1_515_CHASSIS_EPS_CANTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_eps_canType']
73
+ _ECU_STATUS_1_515_CHASSIS_EHB_ERRTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_ehb_errType']
74
+ _ECU_STATUS_1_515_CHASSIS_EHB_CANTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_ehb_canType']
75
+ _ECU_STATUS_1_515_CHASSIS_BMS_CANTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_bms_canType']
76
+ _ECU_STATUS_1_515_CHASSIS_ADS_ERRTYPE = _ECU_STATUS_1_515.enum_types_by_name['Chassis_ads_errType']
77
+ Throttle_command_110 = _reflection.GeneratedProtocolMessageType('Throttle_command_110', (_message.Message,), {
78
+ 'DESCRIPTOR' : _THROTTLE_COMMAND_110,
79
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
80
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Throttle_command_110)
81
+ })
82
+ _sym_db.RegisterMessage(Throttle_command_110)
83
+
84
+ Brake_command_111 = _reflection.GeneratedProtocolMessageType('Brake_command_111', (_message.Message,), {
85
+ 'DESCRIPTOR' : _BRAKE_COMMAND_111,
86
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
87
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Brake_command_111)
88
+ })
89
+ _sym_db.RegisterMessage(Brake_command_111)
90
+
91
+ Steer_command_112 = _reflection.GeneratedProtocolMessageType('Steer_command_112', (_message.Message,), {
92
+ 'DESCRIPTOR' : _STEER_COMMAND_112,
93
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
94
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Steer_command_112)
95
+ })
96
+ _sym_db.RegisterMessage(Steer_command_112)
97
+
98
+ Turnsignal_command_113 = _reflection.GeneratedProtocolMessageType('Turnsignal_command_113', (_message.Message,), {
99
+ 'DESCRIPTOR' : _TURNSIGNAL_COMMAND_113,
100
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
101
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Turnsignal_command_113)
102
+ })
103
+ _sym_db.RegisterMessage(Turnsignal_command_113)
104
+
105
+ Gear_command_114 = _reflection.GeneratedProtocolMessageType('Gear_command_114', (_message.Message,), {
106
+ 'DESCRIPTOR' : _GEAR_COMMAND_114,
107
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
108
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Gear_command_114)
109
+ })
110
+ _sym_db.RegisterMessage(Gear_command_114)
111
+
112
+ Control_command_115 = _reflection.GeneratedProtocolMessageType('Control_command_115', (_message.Message,), {
113
+ 'DESCRIPTOR' : _CONTROL_COMMAND_115,
114
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
115
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Control_command_115)
116
+ })
117
+ _sym_db.RegisterMessage(Control_command_115)
118
+
119
+ Vehicle_mode_command_116 = _reflection.GeneratedProtocolMessageType('Vehicle_mode_command_116', (_message.Message,), {
120
+ 'DESCRIPTOR' : _VEHICLE_MODE_COMMAND_116,
121
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
122
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Vehicle_mode_command_116)
123
+ })
124
+ _sym_db.RegisterMessage(Vehicle_mode_command_116)
125
+
126
+ Throttle_status__510 = _reflection.GeneratedProtocolMessageType('Throttle_status__510', (_message.Message,), {
127
+ 'DESCRIPTOR' : _THROTTLE_STATUS__510,
128
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
129
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Throttle_status__510)
130
+ })
131
+ _sym_db.RegisterMessage(Throttle_status__510)
132
+
133
+ Brake_status__511 = _reflection.GeneratedProtocolMessageType('Brake_status__511', (_message.Message,), {
134
+ 'DESCRIPTOR' : _BRAKE_STATUS__511,
135
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
136
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Brake_status__511)
137
+ })
138
+ _sym_db.RegisterMessage(Brake_status__511)
139
+
140
+ Steer_status__512 = _reflection.GeneratedProtocolMessageType('Steer_status__512', (_message.Message,), {
141
+ 'DESCRIPTOR' : _STEER_STATUS__512,
142
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
143
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Steer_status__512)
144
+ })
145
+ _sym_db.RegisterMessage(Steer_status__512)
146
+
147
+ Turnsignal_status__513 = _reflection.GeneratedProtocolMessageType('Turnsignal_status__513', (_message.Message,), {
148
+ 'DESCRIPTOR' : _TURNSIGNAL_STATUS__513,
149
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
150
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Turnsignal_status__513)
151
+ })
152
+ _sym_db.RegisterMessage(Turnsignal_status__513)
153
+
154
+ Gear_status_514 = _reflection.GeneratedProtocolMessageType('Gear_status_514', (_message.Message,), {
155
+ 'DESCRIPTOR' : _GEAR_STATUS_514,
156
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
157
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Gear_status_514)
158
+ })
159
+ _sym_db.RegisterMessage(Gear_status_514)
160
+
161
+ Ecu_status_1_515 = _reflection.GeneratedProtocolMessageType('Ecu_status_1_515', (_message.Message,), {
162
+ 'DESCRIPTOR' : _ECU_STATUS_1_515,
163
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
164
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Ecu_status_1_515)
165
+ })
166
+ _sym_db.RegisterMessage(Ecu_status_1_515)
167
+
168
+ Ecu_status_2_516 = _reflection.GeneratedProtocolMessageType('Ecu_status_2_516', (_message.Message,), {
169
+ 'DESCRIPTOR' : _ECU_STATUS_2_516,
170
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
171
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Ecu_status_2_516)
172
+ })
173
+ _sym_db.RegisterMessage(Ecu_status_2_516)
174
+
175
+ Ecu_status_3_517 = _reflection.GeneratedProtocolMessageType('Ecu_status_3_517', (_message.Message,), {
176
+ 'DESCRIPTOR' : _ECU_STATUS_3_517,
177
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
178
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Ecu_status_3_517)
179
+ })
180
+ _sym_db.RegisterMessage(Ecu_status_3_517)
181
+
182
+ Ecu_status_4_518 = _reflection.GeneratedProtocolMessageType('Ecu_status_4_518', (_message.Message,), {
183
+ 'DESCRIPTOR' : _ECU_STATUS_4_518,
184
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
185
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Ecu_status_4_518)
186
+ })
187
+ _sym_db.RegisterMessage(Ecu_status_4_518)
188
+
189
+ Vin_resp1_51b = _reflection.GeneratedProtocolMessageType('Vin_resp1_51b', (_message.Message,), {
190
+ 'DESCRIPTOR' : _VIN_RESP1_51B,
191
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
192
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Vin_resp1_51b)
193
+ })
194
+ _sym_db.RegisterMessage(Vin_resp1_51b)
195
+
196
+ Vin_resp2_51c = _reflection.GeneratedProtocolMessageType('Vin_resp2_51c', (_message.Message,), {
197
+ 'DESCRIPTOR' : _VIN_RESP2_51C,
198
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
199
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Vin_resp2_51c)
200
+ })
201
+ _sym_db.RegisterMessage(Vin_resp2_51c)
202
+
203
+ Vin_resp3_51d = _reflection.GeneratedProtocolMessageType('Vin_resp3_51d', (_message.Message,), {
204
+ 'DESCRIPTOR' : _VIN_RESP3_51D,
205
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
206
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Vin_resp3_51d)
207
+ })
208
+ _sym_db.RegisterMessage(Vin_resp3_51d)
209
+
210
+ Wheelspeed_report_51e = _reflection.GeneratedProtocolMessageType('Wheelspeed_report_51e', (_message.Message,), {
211
+ 'DESCRIPTOR' : _WHEELSPEED_REPORT_51E,
212
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
213
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Wheelspeed_report_51e)
214
+ })
215
+ _sym_db.RegisterMessage(Wheelspeed_report_51e)
216
+
217
+ CheckResponseSignal = _reflection.GeneratedProtocolMessageType('CheckResponseSignal', (_message.Message,), {
218
+ 'DESCRIPTOR' : _CHECKRESPONSESIGNAL,
219
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
220
+ # @@protoc_insertion_point(class_scope:apollo.canbus.CheckResponseSignal)
221
+ })
222
+ _sym_db.RegisterMessage(CheckResponseSignal)
223
+
224
+ Ch = _reflection.GeneratedProtocolMessageType('Ch', (_message.Message,), {
225
+ 'DESCRIPTOR' : _CH,
226
+ '__module__' : 'modules.canbus_vehicle.ch.proto.ch_pb2'
227
+ # @@protoc_insertion_point(class_scope:apollo.canbus.Ch)
228
+ })
229
+ _sym_db.RegisterMessage(Ch)
230
+
231
+ if _descriptor._USE_C_DESCRIPTORS == False:
232
+
233
+ DESCRIPTOR._options = None
234
+ _CH.fields_by_name['control_command_115']._options = None
235
+ _CH.fields_by_name['control_command_115']._serialized_options = b'\030\001'
236
+ _THROTTLE_COMMAND_110._serialized_start=60
237
+ _THROTTLE_COMMAND_110._serialized_end=307
238
+ _THROTTLE_COMMAND_110_THROTTLE_PEDAL_EN_CTRLTYPE._serialized_start=208
239
+ _THROTTLE_COMMAND_110_THROTTLE_PEDAL_EN_CTRLTYPE._serialized_end=307
240
+ _BRAKE_COMMAND_111._serialized_start=310
241
+ _BRAKE_COMMAND_111._serialized_end=533
242
+ _BRAKE_COMMAND_111_BRAKE_PEDAL_EN_CTRLTYPE._serialized_start=443
243
+ _BRAKE_COMMAND_111_BRAKE_PEDAL_EN_CTRLTYPE._serialized_end=533
244
+ _STEER_COMMAND_112._serialized_start=536
245
+ _STEER_COMMAND_112._serialized_end=759
246
+ _STEER_COMMAND_112_STEER_ANGLE_EN_CTRLTYPE._serialized_start=669
247
+ _STEER_COMMAND_112_STEER_ANGLE_EN_CTRLTYPE._serialized_end=759
248
+ _TURNSIGNAL_COMMAND_113._serialized_start=762
249
+ _TURNSIGNAL_COMMAND_113._serialized_end=1158
250
+ _TURNSIGNAL_COMMAND_113_LOW_BEAM_CMDTYPE._serialized_start=950
251
+ _TURNSIGNAL_COMMAND_113_LOW_BEAM_CMDTYPE._serialized_end=1011
252
+ _TURNSIGNAL_COMMAND_113_TURN_SIGNAL_CMDTYPE._serialized_start=1014
253
+ _TURNSIGNAL_COMMAND_113_TURN_SIGNAL_CMDTYPE._serialized_end=1158
254
+ _GEAR_COMMAND_114._serialized_start=1161
255
+ _GEAR_COMMAND_114._serialized_end=1342
256
+ _GEAR_COMMAND_114_GEAR_CMDTYPE._serialized_start=1245
257
+ _GEAR_COMMAND_114_GEAR_CMDTYPE._serialized_end=1342
258
+ _CONTROL_COMMAND_115._serialized_start=1345
259
+ _CONTROL_COMMAND_115._serialized_end=1506
260
+ _CONTROL_COMMAND_115_CTRL_CMDTYPE._serialized_start=1435
261
+ _CONTROL_COMMAND_115_CTRL_CMDTYPE._serialized_end=1506
262
+ _VEHICLE_MODE_COMMAND_116._serialized_start=1509
263
+ _VEHICLE_MODE_COMMAND_116._serialized_end=1697
264
+ _VEHICLE_MODE_COMMAND_116_VIN_REQ_CMDTYPE._serialized_start=1615
265
+ _VEHICLE_MODE_COMMAND_116_VIN_REQ_CMDTYPE._serialized_end=1697
266
+ _THROTTLE_STATUS__510._serialized_start=1700
267
+ _THROTTLE_STATUS__510._serialized_end=2311
268
+ _THROTTLE_STATUS__510_THROTTLE_PEDAL_EN_STSTYPE._serialized_start=2011
269
+ _THROTTLE_STATUS__510_THROTTLE_PEDAL_EN_STSTYPE._serialized_end=2143
270
+ _THROTTLE_STATUS__510_DRIVE_MOTOR_ERRTYPE._serialized_start=2145
271
+ _THROTTLE_STATUS__510_DRIVE_MOTOR_ERRTYPE._serialized_end=2228
272
+ _THROTTLE_STATUS__510_BATTERY_BMS_ERRTYPE._serialized_start=2230
273
+ _THROTTLE_STATUS__510_BATTERY_BMS_ERRTYPE._serialized_end=2311
274
+ _BRAKE_STATUS__511._serialized_start=2314
275
+ _BRAKE_STATUS__511._serialized_end=3533
276
+ _BRAKE_STATUS__511_OVERSPD_ENVTYPE._serialized_start=2903
277
+ _BRAKE_STATUS__511_OVERSPD_ENVTYPE._serialized_end=2974
278
+ _BRAKE_STATUS__511_BRAKE_PEDAL_EN_STSTYPE._serialized_start=2976
279
+ _BRAKE_STATUS__511_BRAKE_PEDAL_EN_STSTYPE._serialized_end=3096
280
+ _BRAKE_STATUS__511_BRAKE_ERRTYPE._serialized_start=3098
281
+ _BRAKE_STATUS__511_BRAKE_ERRTYPE._serialized_end=3166
282
+ _BRAKE_STATUS__511_EMERGENCY_BTN_ENVTYPE._serialized_start=3168
283
+ _BRAKE_STATUS__511_EMERGENCY_BTN_ENVTYPE._serialized_end=3264
284
+ _BRAKE_STATUS__511_FRONT_BUMP_ENVTYPE._serialized_start=3266
285
+ _BRAKE_STATUS__511_FRONT_BUMP_ENVTYPE._serialized_end=3349
286
+ _BRAKE_STATUS__511_BACK_BUMP_ENVTYPE._serialized_start=3351
287
+ _BRAKE_STATUS__511_BACK_BUMP_ENVTYPE._serialized_end=3430
288
+ _BRAKE_STATUS__511_BRAKE_LIGHT_ACTUALTYPE._serialized_start=3432
289
+ _BRAKE_STATUS__511_BRAKE_LIGHT_ACTUALTYPE._serialized_end=3533
290
+ _STEER_STATUS__512._serialized_start=3536
291
+ _STEER_STATUS__512._serialized_end=4065
292
+ _STEER_STATUS__512_STEER_ANGLE_EN_STSTYPE._serialized_start=3803
293
+ _STEER_STATUS__512_STEER_ANGLE_EN_STSTYPE._serialized_end=3923
294
+ _STEER_STATUS__512_STEER_ERRTYPE._serialized_start=3925
295
+ _STEER_STATUS__512_STEER_ERRTYPE._serialized_end=3992
296
+ _STEER_STATUS__512_SENSOR_ERRTYPE._serialized_start=3994
297
+ _STEER_STATUS__512_SENSOR_ERRTYPE._serialized_end=4065
298
+ _TURNSIGNAL_STATUS__513._serialized_start=4068
299
+ _TURNSIGNAL_STATUS__513._serialized_end=4467
300
+ _TURNSIGNAL_STATUS__513_LOW_BEAM_STSTYPE._serialized_start=4256
301
+ _TURNSIGNAL_STATUS__513_LOW_BEAM_STSTYPE._serialized_end=4317
302
+ _TURNSIGNAL_STATUS__513_TURN_SIGNAL_STSTYPE._serialized_start=4320
303
+ _TURNSIGNAL_STATUS__513_TURN_SIGNAL_STSTYPE._serialized_end=4467
304
+ _GEAR_STATUS_514._serialized_start=4470
305
+ _GEAR_STATUS_514._serialized_end=4649
306
+ _GEAR_STATUS_514_GEAR_STSTYPE._serialized_start=4552
307
+ _GEAR_STATUS_514_GEAR_STSTYPE._serialized_end=4649
308
+ _ECU_STATUS_1_515._serialized_start=4652
309
+ _ECU_STATUS_1_515._serialized_end=6332
310
+ _ECU_STATUS_1_515_CTRL_STSTYPE._serialized_start=5514
311
+ _ECU_STATUS_1_515_CTRL_STSTYPE._serialized_end=5585
312
+ _ECU_STATUS_1_515_CHASSIS_MCU_ERRTYPE._serialized_start=5587
313
+ _ECU_STATUS_1_515_CHASSIS_MCU_ERRTYPE._serialized_end=5663
314
+ _ECU_STATUS_1_515_CHASSIS_MCU_CANTYPE._serialized_start=5665
315
+ _ECU_STATUS_1_515_CHASSIS_MCU_CANTYPE._serialized_end=5741
316
+ _ECU_STATUS_1_515_CHASSIS_HW_LOSTTYPE._serialized_start=5743
317
+ _ECU_STATUS_1_515_CHASSIS_HW_LOSTTYPE._serialized_end=5819
318
+ _ECU_STATUS_1_515_CHASSIS_EPS_ERRTYPE._serialized_start=5821
319
+ _ECU_STATUS_1_515_CHASSIS_EPS_ERRTYPE._serialized_end=5897
320
+ _ECU_STATUS_1_515_CHASSIS_EPS_CANTYPE._serialized_start=5899
321
+ _ECU_STATUS_1_515_CHASSIS_EPS_CANTYPE._serialized_end=5975
322
+ _ECU_STATUS_1_515_CHASSIS_EHB_ERRTYPE._serialized_start=5977
323
+ _ECU_STATUS_1_515_CHASSIS_EHB_ERRTYPE._serialized_end=6053
324
+ _ECU_STATUS_1_515_CHASSIS_EHB_CANTYPE._serialized_start=6055
325
+ _ECU_STATUS_1_515_CHASSIS_EHB_CANTYPE._serialized_end=6131
326
+ _ECU_STATUS_1_515_CHASSIS_BMS_CANTYPE._serialized_start=6133
327
+ _ECU_STATUS_1_515_CHASSIS_BMS_CANTYPE._serialized_end=6209
328
+ _ECU_STATUS_1_515_CHASSIS_ADS_ERRTYPE._serialized_start=6211
329
+ _ECU_STATUS_1_515_CHASSIS_ADS_ERRTYPE._serialized_end=6332
330
+ _ECU_STATUS_2_516._serialized_start=6335
331
+ _ECU_STATUS_2_516._serialized_end=6507
332
+ _ECU_STATUS_3_517._serialized_start=6510
333
+ _ECU_STATUS_3_517._serialized_end=6744
334
+ _ECU_STATUS_4_518._serialized_start=6747
335
+ _ECU_STATUS_4_518._serialized_end=6988
336
+ _VIN_RESP1_51B._serialized_start=6991
337
+ _VIN_RESP1_51B._serialized_end=7126
338
+ _VIN_RESP2_51C._serialized_start=7129
339
+ _VIN_RESP2_51C._serialized_end=7264
340
+ _VIN_RESP3_51D._serialized_start=7266
341
+ _VIN_RESP3_51D._serialized_end=7296
342
+ _WHEELSPEED_REPORT_51E._serialized_start=7298
343
+ _WHEELSPEED_REPORT_51E._serialized_end=7369
344
+ _CHECKRESPONSESIGNAL._serialized_start=7372
345
+ _CHECKRESPONSESIGNAL._serialized_end=7607
346
+ _CH._serialized_start=7610
347
+ _CH._serialized_end=8918
348
+ # @@protoc_insertion_point(module_scope)