apollo-modules 8.0.2__tar.gz → 9.0.2__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.
- apollo_modules-9.0.2/PKG-INFO +56 -0
- apollo_modules-9.0.2/apollo_modules/__init__.py +1 -0
- apollo_modules-9.0.2/apollo_modules/modules/common/adapters/proto/adapter_config_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/chassis_msgs/chassis_pb2.py +140 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/control_msgs/control_cmd_pb2.py +136 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/control_msgs/pad_msg_pb2.py +43 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/dreamview_msgs/hmi_config_pb2.py +127 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/dreamview_msgs/hmi_mode_pb2.py +214 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/dreamview_msgs/hmi_status_pb2.py +195 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/dreamview_msgs/simulation_world_pb2.py +207 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/action_command_pb2.py +50 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/chassis_command_pb2.py +37 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/command_status_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/free_space_command_pb2.py +36 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/geometry_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/lane_follow_command_pb2.py +37 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/lane_segment_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/path_follow_command_pb2.py +56 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/speed_command_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs/valet_parking_command_pb2.py +37 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/monitor_msgs/system_status_pb2.py +110 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/perception_msgs/perception_benchmark_pb2.py +47 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/perception_msgs/perception_obstacle_pb2.py +166 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/planning_msgs/decision_pb2.py +339 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/planning_msgs/pad_msg_pb2.py +38 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/planning_msgs/planning_command_pb2.py +47 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/planning_msgs/planning_internal_pb2.py +344 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/planning_msgs/planning_pb2.py +110 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/routing_msgs/geometry_pb2.py +90 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/routing_msgs/poi_pb2.py +66 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/routing_msgs/routing_pb2.py +50 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/sensor_msgs/oculii_radar_pb2.py +69 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/sensor_msgs/radarpointcloud_pb2.py +45 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/sensor_msgs/sensor_image_pb2.py +97 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/simulation_msgs/agent_pb2.py +60 -0
- apollo_modules-9.0.2/apollo_modules/modules/common_msgs/task_manager_msgs/task_manager_pb2.py +84 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/calibration_table_pb2.py +44 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/gain_scheduler_conf_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/leadlag_conf_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/local_view_pb2.py +39 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/mrac_conf_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/pid_conf_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/pipeline_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/plugin_declare_info_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/control_component/proto/preprocessor_pb2.py +38 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/controllers/demo_control_task/proto/demo_control_task_conf_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/controllers/lat_based_lqr_controller/proto/lat_based_lqr_controller_conf_pb2.py +37 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/controllers/lon_based_pid_controller/proto/lon_based_pid_controller_conf_pb2.py +46 -0
- apollo_modules-9.0.2/apollo_modules/modules/control/controllers/mpc_controller/proto/mpc_controller_pb2.py +47 -0
- apollo_modules-9.0.2/apollo_modules/modules/data/proto/static_info_pb2.py +138 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/sim_control_manager/proto/dynamic_model_conf_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/sim_control_manager/proto/fnn_model_pb2.py +67 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/sim_control_manager/proto/sim_control_internal_pb2.py +45 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/teleop/proto/daemon_cmd_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/teleop/proto/daemon_rpt_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/teleop/proto/modem_info_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview/proto/dv_plugin_msg_pb2.py +38 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview_plus/proto/data_handler_pb2.py +87 -0
- apollo_modules-9.0.2/apollo_modules/modules/dreamview_plus/proto/obstacle_pb2.py +48 -0
- apollo_modules-9.0.2/apollo_modules/modules/drivers/camera/proto/config_pb2.py +71 -0
- apollo_modules-9.0.2/apollo_modules/modules/drivers/lidar/lslidar/proto/config_pb2.py +45 -0
- apollo_modules-9.0.2/apollo_modules/modules/drivers/lidar/lslidar/proto/lslidar_pb2.py +66 -0
- apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/oculii_radar/proto/oculii_radar_conf_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/external_command/command_processor/action_command_processor/proto/action_command_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/external_command/command_processor/command_processor_base/proto/command_processor_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/external_command/external_command_demo/proto/demo_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/external_command/external_command_demo/proto/sweeper_custom_command_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/external_command/old_routing_adapter/proto/old_routing_adapter_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/external_command/process_component/proto/process_component_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/localization/proto/rtk_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_bev/detector/petr/proto/model_param_pb2.py +36 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_bev/proto/camera_detection_bev_pb2.py +55 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolo/proto/model_param_pb2.py +56 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolox3d/proto/model_param_pb2.py +66 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/proto/camera_detection_multi_stage_pb2.py +65 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage/detector/caddn/proto/model_param_pb2.py +36 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage/detector/smoke/proto/model_param_pb2.py +56 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage/proto/camera_detection_single_stage_pb2.py +55 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/proto/camera_location_estimation_pb2.py +45 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/transformer/multicue/proto/multicue_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/transformer/singlestage/proto/singlestage_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_refinement/location_refiner/proto/location_refiner_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_refinement/proto/camera_location_refinement_pb2.py +65 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_tracking/feature_extract/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_tracking/feature_extract/proto/model_param_pb2.py +36 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_tracking/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_tracking/proto/camera_tracking_component_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_tracking/proto/omt_pb2.py +75 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/camera_tracking/proto/tracking_feature_pb2.py +67 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/camera/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/camera/common/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/camera/common/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/camera/common/proto/object_template_meta_schema_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/ground_service/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/ground_service/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/ground_service/proto/ground_service_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/proto/scene_manager_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/roi_service/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/roi_service/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/lidar/scene_manager/roi_service/proto/roi_service_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/model_info_pb2.py +82 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/model_process_pb2.py +84 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/motion_service_pb2.py +55 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/perception_config_schema_pb2.py +154 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/perception_ultrasonic_pb2.py +48 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/plugin_param_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/rt_pb2.py +1179 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/common/proto/sensor_meta_schema_pb2.py +50 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lane_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lane_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lane_detection/proto/darkSCNN_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lane_detection/proto/darkSCNN_postprocessor_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lane_detection/proto/denseline_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lane_detection/proto/denseline_postprocessor_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lane_detection/proto/lane_perception_component_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lane_detection/proto/perception_pb2.py +75 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/center_point_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/center_point_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/center_point_detection/proto/model_param_pb2.py +36 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/cnn_segmentation/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/cnn_segmentation/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/cnn_segmentation/proto/model_param_pb2.py +56 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/mask_pillars_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/mask_pillars_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/mask_pillars_detection/proto/model_param_pb2.py +36 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/point_pillars_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/point_pillars_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/detector/point_pillars_detection/proto/model_param_pb2.py +36 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection/proto/lidar_detection_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/background_filter_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/filter_bank_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/roi_boundary_filter_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/object_filter_bank/proto/strategy_filter_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_detection_filter/proto/lidar_detection_filter_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_output/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_output/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_output/proto/lidar_output_component_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/classifier/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/classifier/fused_classifier/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/classifier/fused_classifier/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/classifier/fused_classifier/proto/ccrf_type_fusion_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/classifier/fused_classifier/proto/fused_classifier_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/proto/lidar_tracking_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/tracker/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/tracker/multi_lidar_fusion/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/tracker/multi_lidar_fusion/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/lidar_tracking/tracker/multi_lidar_fusion/proto/multi_lidar_fusion_config_pb2.py +104 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/motion_service/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/motion_service/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/motion_service/proto/motion_service_component_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/multi_sensor_fusion/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/multi_sensor_fusion/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/multi_sensor_fusion/proto/dst_existence_fusion_config_pb2.py +44 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/multi_sensor_fusion/proto/dst_type_fusion_config_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/multi_sensor_fusion/proto/fusion_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/multi_sensor_fusion/proto/pbf_gatekeeper_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/multi_sensor_fusion/proto/pbf_tracker_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/multi_sensor_fusion/proto/probabilistic_fusion_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_ground_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_ground_detection/ground_detector/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_ground_detection/ground_detector/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_ground_detection/ground_detector/proto/ground_service_detector_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_ground_detection/ground_detector/proto/spatio_temporal_ground_detector_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_ground_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_ground_detection/proto/pointcloud_ground_detection_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/map_manager/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/map_manager/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/map_manager/proto/map_manager_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/proto/pointcloud_map_based_roi_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/roi_filter/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/roi_filter/hdmap_roi_filter/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/roi_filter/hdmap_roi_filter/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_map_based_roi/roi_filter/hdmap_roi_filter/proto/hdmap_roi_filter_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_preprocess/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_preprocess/preprocessor/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_preprocess/preprocessor/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_preprocess/preprocessor/proto/pointcloud_preprocessor_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_preprocess/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/pointcloud_preprocess/proto/pointcloud_preprocess_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/classifier/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/classifier/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/classifier/proto/ccrf_type_fusion_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/classifier/proto/fused_classifier_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/detector/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/detector/point_pillars_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/detector/point_pillars_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/detector/point_pillars_detection/proto/model_param_pb2.py +36 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/tracker/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/tracker/multi_radar_fusion/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/tracker/multi_radar_fusion/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/lib/tracker/multi_radar_fusion/proto/mrf_config_pb2.py +104 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/proto/preprocessor_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/proto/radar4d_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar4d_detection/proto/radar_obstacle_perception_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar_detection/proto/matcher_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar_detection/proto/preprocessor_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar_detection/proto/radar_component_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar_detection/proto/radar_obstacle_perception_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/radar_detection/proto/tracker_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_detection/detection/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_detection/detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_detection/detection/proto/model_param_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_detection/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_detection/proto/traffic_light_detection_component_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_recognition/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_recognition/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_recognition/proto/traffic_light_recognition_component_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_recognition/recognition/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_recognition/recognition/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_recognition/recognition/proto/model_param_pb2.py +45 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_region_proposal/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_region_proposal/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_region_proposal/proto/trafficlights_proposal_component_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_tracking/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_tracking/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_tracking/proto/traffic_light_tracking_component_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_tracking/tracker/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_tracking/tracker/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/perception/traffic_light_tracking/tracker/proto/semantic_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planners/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planners/navi/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planners/navi/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planners/navi/proto/navi_task_config_pb2.py +82 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planners/navi/proto/planner_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planners/public_road/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planners/public_road/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planners/public_road/proto/planner_config_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/learning_based/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/learning_based/model_inference/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/learning_based/model_inference/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/learning_based/model_inference/proto/learning_model_inference_pb2.py +37 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/auto_tuning_model_input_pb2.py +100 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/auto_tuning_raw_feature_pb2.py +108 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/ipopt_return_status_pb2.py +47 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/lattice_structure_pb2.py +47 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/learning_data_pb2.py +244 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/math/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/math/cos_theta_smoother_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/math/fem_pos_deviation_smoother_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/math/qp_problem_pb2.py +54 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/piecewise_jerk_path_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/planner_open_space_config_pb2.py +163 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/planning_config_pb2.py +57 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/planning_semantic_map_config_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/planning_status_pb2.py +202 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/plugin_declare_info_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/reference_line_smoother_config_pb2.py +69 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_base/proto/st_drivable_boundary_pb2.py +44 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_interface_base/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_interface_base/scenario_base/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_interface_base/scenario_base/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_interface_base/scenario_base/proto/creep_stage_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_interface_base/scenario_base/proto/scenario_pipeline_pb2.py +45 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_interface_base/traffic_rules_base/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_interface_base/traffic_rules_base/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/planning_interface_base/traffic_rules_base/proto/traffic_rules_pipeline_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/bare_intersection_unprotected/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/bare_intersection_unprotected/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/bare_intersection_unprotected/proto/bare_intersection_unprotected_scenario_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/emergency_pull_over/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/emergency_pull_over/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/emergency_pull_over/proto/emergency_pull_over_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/emergency_stop/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/emergency_stop/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/emergency_stop/proto/emergency_stop_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/park_and_go/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/park_and_go/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/park_and_go/proto/park_and_go_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/pull_over/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/pull_over/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/pull_over/proto/pull_over_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/stop_sign_unprotected/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/stop_sign_unprotected/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/stop_sign_unprotected/proto/stop_sign_unprotected_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_protected/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_protected/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_protected/proto/traffic_light_protected_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_left_turn/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_left_turn/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_left_turn/proto/traffic_light_unprotected_left_turn_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_right_turn/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_right_turn/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/traffic_light_unprotected_right_turn/proto/traffic_light_unprotected_right_turn_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/valet_parking/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/valet_parking/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/valet_parking/proto/valet_parking_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/yield_sign/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/yield_sign/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/scenarios/yield_sign/proto/yield_sign_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/fallback_path/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/fallback_path/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/fallback_path/proto/fallback_path_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_borrow_path/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_borrow_path/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_borrow_path/proto/lane_borrow_path_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_change_path/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_change_path/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_change_path/proto/lane_change_path_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_follow_path/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_follow_path/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/lane_follow_path/proto/lane_follow_path_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_fallback_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_fallback_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_fallback_decider/proto/open_space_fallback_decider_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_pre_stop_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_pre_stop_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_pre_stop_decider/proto/open_space_pre_stop_decider_pb2.py +37 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_roi_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_roi_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_roi_decider/proto/open_space_roi_decider_pb2.py +37 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_trajectory_partition/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_trajectory_partition/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_trajectory_partition/proto/open_space_trajectory_partition_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_trajectory_provider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_trajectory_provider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/open_space_trajectory_provider/proto/open_space_trajectory_provider_pb2.py +48 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_decider/proto/path_decider_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_reference_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_reference_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_reference_decider/proto/path_reference_decider_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_time_heuristic/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_time_heuristic/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/path_time_heuristic/proto/path_time_heuristic_pb2.py +44 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/piecewise_jerk_speed/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/piecewise_jerk_speed/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/piecewise_jerk_speed/proto/piecewise_jerk_speed_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/piecewise_jerk_speed_nonlinear/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/piecewise_jerk_speed_nonlinear/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/piecewise_jerk_speed_nonlinear/proto/piecewise_jerk_speed_nonlinear_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/pull_over_path/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/pull_over_path/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/pull_over_path/proto/pull_over_path_pb2.py +41 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/reuse_path/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/reuse_path/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/reuse_path/proto/reuse_path_pb2.py +35 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/rss_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/rss_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/rss_decider/proto/rss_decider_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/rule_based_stop_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/rule_based_stop_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/rule_based_stop_decider/proto/rule_based_stop_decider_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/speed_bounds_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/speed_bounds_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/speed_bounds_decider/proto/speed_bounds_decider_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/speed_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/speed_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/speed_decider/proto/speed_decider_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/st_bounds_decider/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/st_bounds_decider/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/tasks/st_bounds_decider/proto/st_bounds_decider_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/backside_vehicle/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/backside_vehicle/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/backside_vehicle/proto/backside_vehicle_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/crosswalk/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/crosswalk/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/crosswalk/proto/crosswalk_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/destination/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/destination/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/destination/proto/destination_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/keepclear/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/keepclear/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/keepclear/proto/keepclear_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/reference_line_end/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/reference_line_end/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/reference_line_end/proto/reference_line_end_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/rerouting/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/rerouting/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/rerouting/proto/rerouting_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/stop_sign/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/stop_sign/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/stop_sign/proto/stop_sign_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/traffic_light/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/traffic_light/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/traffic_light/proto/traffic_light_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/yield_sign/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/yield_sign/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/planning/traffic_rules/yield_sign/proto/yield_sign_pb2.py +34 -0
- apollo_modules-9.0.2/apollo_modules/modules/prediction/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/prediction/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/prediction/proto/prediction_conf_pb2.py +102 -0
- apollo_modules-9.0.2/apollo_modules/modules/routing/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/routing/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/storytelling/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/storytelling/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/task_manager/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/task_manager/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/task_manager/proto/task_manager_config_pb2.py +44 -0
- apollo_modules-9.0.2/apollo_modules/modules/third_party_perception/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/third_party_perception/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/navigator/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/navigator/dbmap/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/navigator/dbmap/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/prediction/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/prediction/data_pipelines/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/prediction/data_pipelines/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/sensor_calibration/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/tools/sensor_calibration/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/transform/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/transform/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/v2x/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules/modules/v2x/proto/__init__.py +0 -0
- apollo_modules-9.0.2/apollo_modules.egg-info/PKG-INFO +56 -0
- apollo_modules-9.0.2/apollo_modules.egg-info/SOURCES.txt +778 -0
- apollo_modules-9.0.2/setup.py +29 -0
- apollo_modules-8.0.2/PKG-INFO +0 -56
- apollo_modules-8.0.2/apollo_modules/__init__.py +0 -1
- apollo_modules-8.0.2/apollo_modules/modules/common/adapters/proto/adapter_config_pb2.py +0 -54
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/chassis_msgs/chassis_pb2.py +0 -139
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/control_msgs/control_cmd_pb2.py +0 -135
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/control_msgs/pad_msg_pb2.py +0 -45
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/dreamview_msgs/hmi_status_pb2.py +0 -122
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/monitor_msgs/system_status_pb2.py +0 -97
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/perception_msgs/perception_obstacle_pb2.py +0 -168
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/planning_msgs/decision_pb2.py +0 -339
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/planning_msgs/pad_msg_pb2.py +0 -38
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/planning_msgs/planning_internal_pb2.py +0 -340
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/planning_msgs/planning_pb2.py +0 -110
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/planning_msgs/scenario_type_pb2.py +0 -84
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/routing_msgs/poi_pb2.py +0 -47
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/routing_msgs/routing_pb2.py +0 -142
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/sensor_msgs/sensor_image_pb2.py +0 -97
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/simulation_msgs/agent_pb2.py +0 -60
- apollo_modules-8.0.2/apollo_modules/modules/common_msgs/task_manager_msgs/task_manager_pb2.py +0 -84
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/calibration_table_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/control_common_conf_pb2.py +0 -36
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/control_conf_pb2.py +0 -42
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/gain_scheduler_conf_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/lat_controller_conf_pb2.py +0 -37
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/leadlag_conf_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/local_view_pb2.py +0 -39
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/lon_controller_conf_pb2.py +0 -47
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/mpc_controller_conf_pb2.py +0 -36
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/mrac_conf_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/pid_conf_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/control/proto/preprocessor_pb2.py +0 -38
- apollo_modules-8.0.2/apollo_modules/modules/data/proto/static_info_pb2.py +0 -139
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/sim_control_manager/proto/dynamic_model_conf_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/sim_control_manager/proto/fnn_model_pb2.py +0 -67
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/sim_control_manager/proto/sim_control_internal_pb2.py +0 -45
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/teleop/proto/daemon_cmd_pb2.py +0 -35
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/teleop/proto/daemon_rpt_pb2.py +0 -35
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/teleop/proto/modem_info_pb2.py +0 -35
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/proto/dv_plugin_msg_pb2.py +0 -38
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/proto/hmi_config_pb2.py +0 -120
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/proto/hmi_mode_pb2.py +0 -200
- apollo_modules-8.0.2/apollo_modules/modules/dreamview/proto/simulation_world_pb2.py +0 -206
- apollo_modules-8.0.2/apollo_modules/modules/drivers/camera/proto/config_pb2.py +0 -60
- apollo_modules-8.0.2/apollo_modules/modules/localization/proto/rtk_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/camera/app/proto/perception_pb2.py +0 -144
- apollo_modules-8.0.2/apollo_modules/modules/perception/camera/common/proto/object_template_meta_schema_pb2.py +0 -54
- apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/obstacle/detector/smoke/proto/smoke_pb2.py +0 -84
- apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/traffic_light/preprocessor/proto/tl_preprocess_pb2.py +0 -35
- apollo_modules-8.0.2/apollo_modules/modules/perception/camera/proto/yolo_pb2.py +0 -84
- apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/app/proto/lidar_obstacle_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/app/proto/lidar_obstacle_tracking_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation/proto/cnnseg_param_pb2.py +0 -54
- apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation/proto/spp_engine_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/detector/ncut_segmentation/proto/ncut_param_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager/ground_service/proto/ground_service_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager/proto/scene_manager_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager/roi_service/proto/roi_service_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/onboard/proto/fusion_camera_detection_component_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/onboard/proto/fusion_component_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/onboard/proto/lane_perception_component_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/onboard/proto/lidar_component_config_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/perception/onboard/proto/motion_service_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/onboard/proto/radar_component_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/onboard/proto/trafficlights_perception_component_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/camera_detection_config_pb2.py +0 -64
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/lane_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/lidar_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/pipeline_config_pb2.py +0 -178
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/camera_get_object_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/ccrf_type_fusion_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/dst_existence_fusion_config_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/dst_type_fusion_config_pb2.py +0 -54
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/filter_bbox_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/get_image_data_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/multi_lidar_fusion_config_pb2.py +0 -94
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/pbf_gatekeeper_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/pointcloud_downsample_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/pointcloud_get_objects_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/recover_bbox_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/resize_and_normalize_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin/roi_boundary_filter_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/all_latest_fusion_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/bev_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/bev_obstacle_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/caddn_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/camera_detection_postprocessor_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/camera_detection_preprocessor_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/camera_detector_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/center_point_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/cnnseg_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/darkSCNN_pb2.py +0 -54
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/darkSCNN_postprocessor_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/denseline_pb2.py +0 -54
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/denseline_postprocessor_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/detection_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/fused_classifier_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/ground_service_detector_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/hdmap_roi_filter_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/location_refiner_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/map_manager_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/mask_pillars_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/mlf_engine_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/multicue_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/ncut_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/object_builder_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/object_filter_bank_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/omt_bev_pb2.py +0 -74
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/omt_pb2.py +0 -74
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/pbf_tracker_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/point_pillars_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/pointcloud_detection_postprocessor_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/pointcloud_detection_preprocessor_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/pointcloud_preprocessor_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/probabilistic_fusion_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/recognition_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/semantic_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/singlestage_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/smoke_obstacle_detection_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/spatio_temporal_ground_detector_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/tracking_feature_pb2.py +0 -77
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage/yolo_obstacle_detector_config_pb2.py +0 -35
- apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/traffic_light_config_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/perception/proto/motion_service_pb2.py +0 -55
- apollo_modules-8.0.2/apollo_modules/modules/perception/proto/perception_config_schema_pb2.py +0 -154
- apollo_modules-8.0.2/apollo_modules/modules/perception/proto/perception_ultrasonic_pb2.py +0 -48
- apollo_modules-8.0.2/apollo_modules/modules/perception/proto/rt_pb2.py +0 -1179
- apollo_modules-8.0.2/apollo_modules/modules/perception/proto/sensor_meta_schema_pb2.py +0 -50
- apollo_modules-8.0.2/apollo_modules/modules/perception/proto/tracker_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/auto_tuning_model_input_pb2.py +0 -100
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/auto_tuning_raw_feature_pb2.py +0 -108
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/ipopt_return_status_pb2.py +0 -47
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/lattice_structure_pb2.py +0 -47
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/learning_data_pb2.py +0 -244
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/math/cos_theta_smoother_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/math/fem_pos_deviation_smoother_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/math/qp_problem_pb2.py +0 -54
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/open_space_task_config_pb2.py +0 -143
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/planner_open_space_config_pb2.py +0 -136
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/planning_config_pb2.py +0 -293
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/planning_semantic_map_config_pb2.py +0 -34
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/planning_stats_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/planning_status_pb2.py +0 -217
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/reference_line_smoother_config_pb2.py +0 -69
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/st_drivable_boundary_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/task_config_pb2.py +0 -267
- apollo_modules-8.0.2/apollo_modules/modules/planning/proto/traffic_rule_config_pb2.py +0 -137
- apollo_modules-8.0.2/apollo_modules/modules/prediction/proto/prediction_conf_pb2.py +0 -69
- apollo_modules-8.0.2/apollo_modules/modules/task_manager/proto/task_manager_config_pb2.py +0 -44
- apollo_modules-8.0.2/apollo_modules.egg-info/PKG-INFO +0 -56
- apollo_modules-8.0.2/apollo_modules.egg-info/SOURCES.txt +0 -494
- apollo_modules-8.0.2/setup.py +0 -28
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/README.md +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/audio/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/audio/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/audio/proto/audio_conf_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/bridge/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/bridge/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/bridge/proto/udp_bridge_remote_info_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus/proto/canbus_conf_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus/proto/vehicle_parameter_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/ch/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/ch/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/ch/proto/ch_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/devkit/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/devkit/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/devkit/proto/devkit_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/ge3/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/ge3/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/ge3/proto/ge3_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/gem/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/gem/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/gem/proto/gem_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/lexus/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/lexus/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/lexus/proto/lexus_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/lincoln/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/lincoln/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/lincoln/proto/lincoln_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/neolix_edu/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/neolix_edu/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/neolix_edu/proto/neolix_edu_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/transit/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/transit/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/transit/proto/transit_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/wey/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/wey/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/wey/proto/wey_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/zhongyun/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/zhongyun/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/canbus_vehicle/zhongyun/proto/zhongyun_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/adapters/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/adapters/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/latency_recorder/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/latency_recorder/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/latency_recorder/proto/latency_record_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/util/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/util/testdata/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/util/testdata/simple_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/vehicle_model/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/vehicle_model/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/vehicle_model/proto/vehicle_model_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/vehicle_state/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/vehicle_state/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common/vehicle_state/proto/vehicle_state_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/audio_msgs/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/audio_msgs/audio_common_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/audio_msgs/audio_event_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/audio_msgs/audio_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/direction_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/drive_event_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/drive_state_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/error_code_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/geometry_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/header_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/pnc_point_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/vehicle_id_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/basic_msgs/vehicle_signal_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/chassis_msgs/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/chassis_msgs/chassis_detail_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/config_msgs/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/config_msgs/vehicle_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/control_msgs/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/control_msgs/input_debug_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/dreamview_msgs/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/dreamview_msgs/chart_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/drivers_msgs/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/drivers_msgs/can_card_parameter_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/guardian_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/external_command_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/localization_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/guardian_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/guardian_msgs/guardian_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/map_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/localization_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/localization_msgs/gps_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/localization_msgs/imu_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/localization_msgs/localization_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/localization_msgs/localization_status_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/localization_msgs/pose_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/monitor_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/map_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_clear_area_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_crosswalk_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_geometry_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_id_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_junction_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_lane_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_overlap_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_parking_space_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_pnc_junction_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_road_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_rsu_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_signal_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_speed_bump_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_speed_control_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_stop_sign_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/map_msgs/map_yield_sign_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/perception_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/monitor_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/monitor_msgs/monitor_log_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/monitor_msgs/smart_recorder_status_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/planning_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/perception_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/perception_msgs/perception_camera_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/perception_msgs/perception_lane_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/perception_msgs/traffic_light_detection_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/prediction_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/planning_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/planning_msgs/navigation_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/planning_msgs/sl_boundary_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/routing_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/prediction_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/prediction_msgs/feature_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/prediction_msgs/lane_graph_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/prediction_msgs/prediction_obstacle_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/prediction_msgs/prediction_point_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/prediction_msgs/scenario_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/sensor_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/routing_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/simulation_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/sensor_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/conti_radar_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/delphi_esr_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/gnss_best_pose_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/gnss_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/gnss_raw_observation_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/heading_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/imu_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/ins_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/mobileye_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/pointcloud_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/racobit_radar_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/radar_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/smartereye_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/sensor_msgs/ultrasonic_radar_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/storytelling_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/simulation_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/simulation_msgs/grading_condition_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/simulation_msgs/grading_metric_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/simulation_msgs/scenario_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/task_manager_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/storytelling_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/storytelling_msgs/story_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/transform_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/task_manager_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/common_msgs/v2x_msgs → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/transform_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/transform_msgs/transform_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/contrib → apollo_modules-9.0.2/apollo_modules/modules/common_msgs/v2x_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/common_msgs/v2x_msgs/v2x_traffic_light_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/contrib/lgsvl_msgs → apollo_modules-9.0.2/apollo_modules/modules/contrib}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/contrib/lgsvl_msgs/proto → apollo_modules-9.0.2/apollo_modules/modules/contrib/lgsvl_msgs}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/control → apollo_modules-9.0.2/apollo_modules/modules/contrib/lgsvl_msgs/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection2d_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection2darray_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection3d_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/contrib/lgsvl_msgs/proto/detection3darray_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/control/proto → apollo_modules-9.0.2/apollo_modules/modules/control}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/data → apollo_modules-9.0.2/apollo_modules/modules/control/control_component}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/data → apollo_modules-9.0.2/apollo_modules/modules/control/control_component}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/data/tools → apollo_modules-9.0.2/apollo_modules/modules/control/controllers}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/data/tools/smart_recorder → apollo_modules-9.0.2/apollo_modules/modules/control/controllers/demo_control_task}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/data/tools/smart_recorder → apollo_modules-9.0.2/apollo_modules/modules/control/controllers/demo_control_task}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/dreamview → apollo_modules-9.0.2/apollo_modules/modules/control/controllers/lat_based_lqr_controller}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend → apollo_modules-9.0.2/apollo_modules/modules/control/controllers/lat_based_lqr_controller/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/sim_control_manager → apollo_modules-9.0.2/apollo_modules/modules/control/controllers/lon_based_pid_controller}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/sim_control_manager → apollo_modules-9.0.2/apollo_modules/modules/control/controllers/lon_based_pid_controller}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/teleop → apollo_modules-9.0.2/apollo_modules/modules/control/controllers/mpc_controller}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/dreamview/backend/teleop → apollo_modules-9.0.2/apollo_modules/modules/control/controllers/mpc_controller}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/dreamview/proto → apollo_modules-9.0.2/apollo_modules/modules/data}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers → apollo_modules-9.0.2/apollo_modules/modules/data/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/data/proto/frame_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/camera → apollo_modules-9.0.2/apollo_modules/modules/data/tools}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/camera/proto → apollo_modules-9.0.2/apollo_modules/modules/data/tools/smart_recorder}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/canbus → apollo_modules-9.0.2/apollo_modules/modules/data/tools/smart_recorder/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/data/tools/smart_recorder/proto/smart_recorder_triggers_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/canbus/proto → apollo_modules-9.0.2/apollo_modules/modules/dreamview}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/gnss → apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/gnss/proto → apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/lidar → apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/sim_control_manager}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/lidar → apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/sim_control_manager}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/lidar/robosense → apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/teleop}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/lidar/robosense → apollo_modules-9.0.2/apollo_modules/modules/dreamview/backend/common/teleop}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/microphone → apollo_modules-9.0.2/apollo_modules/modules/dreamview/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/dreamview/proto/camera_update_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/dreamview/proto/data_collection_table_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/dreamview/proto/plugin_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/dreamview/proto/point_cloud_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/dreamview/proto/preprocess_table_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/dreamview/proto/record_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/dreamview/proto/scenario_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/microphone/proto → apollo_modules-9.0.2/apollo_modules/modules/dreamview_plus}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/radar → apollo_modules-9.0.2/apollo_modules/modules/dreamview_plus/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/radar/conti_radar → apollo_modules-9.0.2/apollo_modules/modules/drivers}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/radar/conti_radar/proto → apollo_modules-9.0.2/apollo_modules/modules/drivers/camera}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/radar/racobit_radar → apollo_modules-9.0.2/apollo_modules/modules/drivers/camera/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/radar/racobit_radar/proto → apollo_modules-9.0.2/apollo_modules/modules/drivers/canbus}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/radar/ultrasonic_radar → apollo_modules-9.0.2/apollo_modules/modules/drivers/canbus/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/canbus/proto/sensor_canbus_conf_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/radar/ultrasonic_radar/proto → apollo_modules-9.0.2/apollo_modules/modules/drivers/gnss}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/smartereye → apollo_modules-9.0.2/apollo_modules/modules/drivers/gnss/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/gnss/proto/config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/gnss/proto/gnss_status_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/smartereye/proto → apollo_modules-9.0.2/apollo_modules/modules/drivers/lidar}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/tools → apollo_modules-9.0.2/apollo_modules/modules/drivers/lidar/lslidar}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/tools/image_decompress → apollo_modules-9.0.2/apollo_modules/modules/drivers/lidar/lslidar/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/tools/image_decompress → apollo_modules-9.0.2/apollo_modules/modules/drivers/lidar}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/proto/config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/proto/hesai_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/proto/hesai_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/proto/lidar_parameter_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/proto/robosense_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/proto/robosense_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/proto/velodyne_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/proto/velodyne_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/video → apollo_modules-9.0.2/apollo_modules/modules/drivers/lidar/robosense}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/drivers/video → apollo_modules-9.0.2/apollo_modules/modules/drivers/lidar/robosense}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/robosense/proto/lidars_filter_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/robosense/proto/sensor_suteng_conf_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/lidar/robosense/proto/sensor_suteng_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/guardian → apollo_modules-9.0.2/apollo_modules/modules/drivers/microphone}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/guardian → apollo_modules-9.0.2/apollo_modules/modules/drivers/microphone}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/microphone/proto/audio_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/microphone/proto/microphone_config_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/localization → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/localization/proto → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/conti_radar}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/map → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/conti_radar/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/radar/conti_radar/proto/conti_radar_conf_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/map/relative_map → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/oculii_radar}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/map/relative_map → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/oculii_radar}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/map/tools → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/racobit_radar}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/map/tools/map_datachecker → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/racobit_radar/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/radar/racobit_radar/proto/racobit_radar_conf_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/map/tools/map_datachecker/proto → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/ultrasonic_radar}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception → apollo_modules-9.0.2/apollo_modules/modules/drivers/radar/ultrasonic_radar/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/radar/ultrasonic_radar/proto/ultrasonic_radar_conf_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera → apollo_modules-9.0.2/apollo_modules/modules/drivers/smartereye}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/app → apollo_modules-9.0.2/apollo_modules/modules/drivers/smartereye/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/smartereye/proto/config_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/app/proto → apollo_modules-9.0.2/apollo_modules/modules/drivers/tools}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/common → apollo_modules-9.0.2/apollo_modules/modules/drivers/tools/image_decompress}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/common → apollo_modules-9.0.2/apollo_modules/modules/drivers/tools/image_decompress}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/tools/image_decompress/proto/config_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib → apollo_modules-9.0.2/apollo_modules/modules/drivers/video}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/obstacle → apollo_modules-9.0.2/apollo_modules/modules/drivers/video/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/drivers/video/proto/video_h265cfg_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/obstacle/detector → apollo_modules-9.0.2/apollo_modules/modules/external_command}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/obstacle/detector/smoke → apollo_modules-9.0.2/apollo_modules/modules/external_command/command_processor}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/obstacle/detector/smoke/proto → apollo_modules-9.0.2/apollo_modules/modules/external_command/command_processor/action_command_processor}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/traffic_light → apollo_modules-9.0.2/apollo_modules/modules/external_command/command_processor/action_command_processor/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/traffic_light/preprocessor → apollo_modules-9.0.2/apollo_modules/modules/external_command/command_processor/command_processor_base}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/lib/traffic_light/preprocessor → apollo_modules-9.0.2/apollo_modules/modules/external_command/command_processor/command_processor_base}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/camera/proto → apollo_modules-9.0.2/apollo_modules/modules/external_command/external_command_demo}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar → apollo_modules-9.0.2/apollo_modules/modules/external_command/external_command_demo/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/app → apollo_modules-9.0.2/apollo_modules/modules/external_command/old_routing_adapter}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/app → apollo_modules-9.0.2/apollo_modules/modules/external_command/old_routing_adapter}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib → apollo_modules-9.0.2/apollo_modules/modules/external_command/process_component}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/detector → apollo_modules-9.0.2/apollo_modules/modules/external_command/process_component/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation → apollo_modules-9.0.2/apollo_modules/modules/guardian}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/detector/cnn_segmentation → apollo_modules-9.0.2/apollo_modules/modules/guardian}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/guardian/proto/guardian_conf_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/detector/ncut_segmentation → apollo_modules-9.0.2/apollo_modules/modules/localization}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/detector/ncut_segmentation → apollo_modules-9.0.2/apollo_modules/modules/localization}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/localization/proto/gnss_pnt_result_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/localization/proto/localization_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/localization/proto/measure_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/localization/proto/sins_pva_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager → apollo_modules-9.0.2/apollo_modules/modules/map}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager/ground_service → apollo_modules-9.0.2/apollo_modules/modules/map/relative_map}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager/ground_service → apollo_modules-9.0.2/apollo_modules/modules/map/relative_map}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/map/relative_map/proto/navigator_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/map/relative_map/proto/relative_map_config_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager/proto → apollo_modules-9.0.2/apollo_modules/modules/map/tools}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager/roi_service → apollo_modules-9.0.2/apollo_modules/modules/map/tools/map_datachecker}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/lidar/lib/scene_manager/roi_service → apollo_modules-9.0.2/apollo_modules/modules/map/tools/map_datachecker}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/map/tools/map_datachecker/proto/collection_check_message_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/map/tools/map_datachecker/proto/collection_error_code_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/map/tools/map_datachecker/proto/collection_service_pb2.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/onboard → apollo_modules-9.0.2/apollo_modules/modules/perception}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/onboard/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_bev}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_bev/detector}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_bev/detector/petr}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/plugin → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_bev/detector/petr/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/pipeline/proto/stage → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_bev/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/perception/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/planning → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/detector}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/planning/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolo}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/planning/proto/math → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolo/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/prediction → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolox3d}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/prediction → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/detector/yolox3d}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/routing → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_multi_stage/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/routing/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/storytelling → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage/detector}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/storytelling/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage/detector/caddn}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/task_manager → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage/detector/caddn/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/task_manager/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage/detector/smoke}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/third_party_perception → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage/detector/smoke/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/third_party_perception → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_detection_single_stage}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools/navigator → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools/navigator/dbmap → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/transformer}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools/navigator/dbmap/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/transformer/multicue}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools/prediction → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/transformer/multicue/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools/prediction/data_pipelines → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/transformer/singlestage}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools/prediction/data_pipelines → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_estimation/transformer/singlestage}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools/sensor_calibration → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_refinement}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/tools/sensor_calibration/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_refinement/location_refiner}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/transform → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_refinement/location_refiner/proto}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/transform → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_location_refinement}/proto/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/v2x → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_tracking}/__init__.py +0 -0
- {apollo_modules-8.0.2/apollo_modules/modules/v2x/proto → apollo_modules-9.0.2/apollo_modules/modules/perception/camera_tracking/feature_extract}/__init__.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/prediction/proto/fnn_model_base_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/prediction/proto/fnn_vehicle_model_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/prediction/proto/network_layers_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/prediction/proto/network_model_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/prediction/proto/offline_features_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/prediction/proto/vector_net_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/routing/proto/routing_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/routing/proto/topo_graph_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/storytelling/proto/storytelling_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/third_party_perception/proto/radar_obstacle_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/third_party_perception/proto/third_party_perception_component_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/tools/navigator/dbmap/proto/dbmap_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/tools/prediction/data_pipelines/proto/cruise_model_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/tools/prediction/data_pipelines/proto/fnn_model_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/tools/sensor_calibration/proto/extractor_config_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/transform/proto/static_transform_conf_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/fusion_params_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_car_status_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_junction_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_monitor_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_obstacles_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_obu_rsi_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_obu_traffic_light_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_rsi_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_service_car_to_obu_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_service_obu_to_car_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules/modules/v2x/proto/v2x_traffic_light_policy_pb2.py +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules.egg-info/dependency_links.txt +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules.egg-info/requires.txt +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/apollo_modules.egg-info/top_level.txt +0 -0
- {apollo_modules-8.0.2 → apollo_modules-9.0.2}/setup.cfg +0 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: apollo_modules
|
|
3
|
+
Version: 9.0.2
|
|
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.1', '8.0.1', '9.0.1'
|
|
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 @@
|
|
|
1
|
+
__version__ = "9.0.2" # Replace with your actual version
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: modules/common/adapters/proto/adapter_config.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'\n2modules/common/adapters/proto/adapter_config.proto\x12\x15\x61pollo.common.adapter\"\xc6\x0e\n\rAdapterConfig\x12>\n\x04type\x18\x01 \x01(\x0e\x32\x30.apollo.common.adapter.AdapterConfig.MessageType\x12\x37\n\x04mode\x18\x02 \x01(\x0e\x32).apollo.common.adapter.AdapterConfig.Mode\x12!\n\x15message_history_limit\x18\x03 \x01(\x05:\x02\x31\x30\x12\x14\n\x05latch\x18\x04 \x01(\x08:\x05\x66\x61lse\x12\r\n\x05topic\x18\x05 \x01(\t\"\xbb\x0c\n\x0bMessageType\x12\x0f\n\x0bPOINT_CLOUD\x10\x01\x12\x15\n\x11VLP16_POINT_CLOUD\x10:\x12\x07\n\x03GPS\x10\x02\x12\x07\n\x03IMU\x10\x03\x12\x0b\n\x07\x43HASSIS\x10\x04\x12\x10\n\x0cLOCALIZATION\x10\x05\x12\x17\n\x13PLANNING_TRAJECTORY\x10\x06\x12\x0b\n\x07MONITOR\x10\x07\x12\x07\n\x03PAD\x10\x08\x12\x13\n\x0f\x43ONTROL_COMMAND\x10\t\x12\x13\n\x0f\x43HASSIS_COMMAND\x10L\x12\x0e\n\nPREDICTION\x10\n\x12\x18\n\x14PERCEPTION_OBSTACLES\x10\x0b\x12\x1b\n\x17TRAFFIC_LIGHT_DETECTION\x10\x0c\x12\x12\n\x0e\x43HASSIS_DETAIL\x10\r\x12\x10\n\x08\x44\x45\x43ISION\x10\x0e\x1a\x02\x08\x01\x12\n\n\x06\x43\x41NBUS\x10\x0f\x12\x13\n\x0fROUTING_REQUEST\x10\x10\x12\x14\n\x10ROUTING_RESPONSE\x10\x11\x12\x15\n\x11RELATIVE_ODOMETRY\x10\x12\x12\x0c\n\x08INS_STAT\x10\x13\x12\x13\n\x0bHMI_COMMAND\x10\x14\x1a\x02\x08\x01\x12\x0c\n\x08MOBILEYE\x10\x15\x12\r\n\tDELPHIESR\x10\x16\x12\x14\n\x10\x43OMPRESSED_IMAGE\x10\x17\x12\x11\n\rSYSTEM_STATUS\x10\x18\x12\x0e\n\nINS_STATUS\x10\x19\x12\x0f\n\x0bGNSS_STATUS\x10\x1a\x12\x0f\n\x0b\x43ONTI_RADAR\x10\x1b\x12\x0f\n\x0bIMAGE_SHORT\x10\x1c\x12\x0e\n\nIMAGE_LONG\x10\x1d\x12\x0f\n\x0b\x44RIVE_EVENT\x10\x1e\x12\x10\n\x0cGNSS_RTK_OBS\x10\x1f\x12\x10\n\x0cGNSS_RTK_EPH\x10 \x12\x12\n\x0eGNSS_BEST_POSE\x10!\x12\x19\n\x15LOCALIZATION_MSF_GNSS\x10\"\x12\x1a\n\x16LOCALIZATION_MSF_LIDAR\x10#\x12\x1d\n\x19LOCALIZATION_MSF_SINS_PVA\x10$\x12\x0b\n\x07RAW_IMU\x10%\x12\x1b\n\x17LOCALIZATION_MSF_STATUS\x10&\x12\x0f\n\x0bSTATIC_INFO\x10\'\x12\x10\n\x0cRELATIVE_MAP\x10(\x12\x0e\n\nNAVIGATION\x10)\x12\x14\n\x10ULTRASONIC_RADAR\x10*\x12\x11\n\rAUDIO_CAPTURE\x10+\x12\x0f\n\x0bIMAGE_FRONT\x10-\x12\x17\n\x13PANDORA_POINT_CLOUD\x10.\x12\x1e\n\x1aPANDORA_CAMERA_FRONT_COLOR\x10/\x12\x1d\n\x19PANDORA_CAMERA_RIGHT_GRAY\x10\x30\x12\x1c\n\x18PANDORA_CAMERA_LEFT_GRAY\x10\x31\x12\x1d\n\x19PANDORA_CAMERA_FRONT_GRAY\x10\x32\x12\x1c\n\x18PANDORA_CAMERA_BACK_GRAY\x10\x33\x12\x18\n\x14PERCEPTION_LANE_MASK\x10\x34\x12\x0c\n\x08GUARDIAN\x10\x35\x12\x11\n\rGNSS_RAW_DATA\x10\x36\x12\x11\n\rSTREAM_STATUS\x10\x37\x12\x10\n\x0cGNSS_HEADING\x10\x38\x12\r\n\tRTCM_DATA\x10\x39\x12\x11\n\rRACOBIT_RADAR\x10;\x12\x15\n\x11POINT_CLOUD_DENSE\x10<\x12\x19\n\x15POINT_CLOUD_DENSE_RAW\x10=\x12\x17\n\x13VELODYNE_SCAN_DENSE\x10>\x12\x18\n\x14POINT_CLOUD_SPARSE_1\x10?\x12\x1c\n\x18POINT_CLOUD_SPARSE_RAW_1\x10@\x12\x1a\n\x16VELODYNE_SCAN_SPARSE_1\x10\x41\x12\x18\n\x14POINT_CLOUD_SPARSE_2\x10\x42\x12\x1c\n\x18POINT_CLOUD_SPARSE_RAW_2\x10\x43\x12\x1a\n\x16VELODYNE_SCAN_SPARSE_2\x10\x44\x12\x18\n\x14POINT_CLOUD_SPARSE_3\x10\x45\x12\x1c\n\x18POINT_CLOUD_SPARSE_RAW_3\x10\x46\x12\x1a\n\x16VELODYNE_SCAN_SPARSE_3\x10G\x12\x15\n\x11\x43\x41MERA_IMAGE_LONG\x10H\x12\x16\n\x12\x43\x41MERA_IMAGE_SHORT\x10I\x12\x10\n\x0cPLANNING_PAD\x10J\x12\x10\n\x0cSTORYTELLING\x10K\"6\n\x04Mode\x12\x10\n\x0cRECEIVE_ONLY\x10\x00\x12\x10\n\x0cPUBLISH_ONLY\x10\x01\x12\n\n\x06\x44UPLEX\x10\x02\"\\\n\x14\x41\x64\x61pterManagerConfig\x12\x34\n\x06\x63onfig\x18\x01 \x03(\x0b\x32$.apollo.common.adapter.AdapterConfig\x12\x0e\n\x06is_ros\x18\x02 \x01(\x08')
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
_ADAPTERCONFIG = DESCRIPTOR.message_types_by_name['AdapterConfig']
|
|
22
|
+
_ADAPTERMANAGERCONFIG = DESCRIPTOR.message_types_by_name['AdapterManagerConfig']
|
|
23
|
+
_ADAPTERCONFIG_MESSAGETYPE = _ADAPTERCONFIG.enum_types_by_name['MessageType']
|
|
24
|
+
_ADAPTERCONFIG_MODE = _ADAPTERCONFIG.enum_types_by_name['Mode']
|
|
25
|
+
AdapterConfig = _reflection.GeneratedProtocolMessageType('AdapterConfig', (_message.Message,), {
|
|
26
|
+
'DESCRIPTOR' : _ADAPTERCONFIG,
|
|
27
|
+
'__module__' : 'modules.common.adapters.proto.adapter_config_pb2'
|
|
28
|
+
# @@protoc_insertion_point(class_scope:apollo.common.adapter.AdapterConfig)
|
|
29
|
+
})
|
|
30
|
+
_sym_db.RegisterMessage(AdapterConfig)
|
|
31
|
+
|
|
32
|
+
AdapterManagerConfig = _reflection.GeneratedProtocolMessageType('AdapterManagerConfig', (_message.Message,), {
|
|
33
|
+
'DESCRIPTOR' : _ADAPTERMANAGERCONFIG,
|
|
34
|
+
'__module__' : 'modules.common.adapters.proto.adapter_config_pb2'
|
|
35
|
+
# @@protoc_insertion_point(class_scope:apollo.common.adapter.AdapterManagerConfig)
|
|
36
|
+
})
|
|
37
|
+
_sym_db.RegisterMessage(AdapterManagerConfig)
|
|
38
|
+
|
|
39
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
40
|
+
|
|
41
|
+
DESCRIPTOR._options = None
|
|
42
|
+
_ADAPTERCONFIG_MESSAGETYPE.values_by_name["DECISION"]._options = None
|
|
43
|
+
_ADAPTERCONFIG_MESSAGETYPE.values_by_name["DECISION"]._serialized_options = b'\010\001'
|
|
44
|
+
_ADAPTERCONFIG_MESSAGETYPE.values_by_name["HMI_COMMAND"]._options = None
|
|
45
|
+
_ADAPTERCONFIG_MESSAGETYPE.values_by_name["HMI_COMMAND"]._serialized_options = b'\010\001'
|
|
46
|
+
_ADAPTERCONFIG._serialized_start=78
|
|
47
|
+
_ADAPTERCONFIG._serialized_end=1940
|
|
48
|
+
_ADAPTERCONFIG_MESSAGETYPE._serialized_start=289
|
|
49
|
+
_ADAPTERCONFIG_MESSAGETYPE._serialized_end=1884
|
|
50
|
+
_ADAPTERCONFIG_MODE._serialized_start=1886
|
|
51
|
+
_ADAPTERCONFIG_MODE._serialized_end=1940
|
|
52
|
+
_ADAPTERMANAGERCONFIG._serialized_start=1942
|
|
53
|
+
_ADAPTERMANAGERCONFIG._serialized_end=2034
|
|
54
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: modules/common_msgs/chassis_msgs/chassis.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import enum_type_wrapper
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import message as _message
|
|
9
|
+
from google.protobuf import reflection as _reflection
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
# @@protoc_insertion_point(imports)
|
|
12
|
+
|
|
13
|
+
_sym_db = _symbol_database.Default()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
|
|
17
|
+
from apollo_modules.modules.common_msgs.basic_msgs import drive_state_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_drive__state__pb2
|
|
18
|
+
from apollo_modules.modules.common_msgs.basic_msgs import geometry_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_geometry__pb2
|
|
19
|
+
from apollo_modules.modules.common_msgs.basic_msgs import header_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_header__pb2
|
|
20
|
+
from apollo_modules.modules.common_msgs.basic_msgs import vehicle_id_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_vehicle__id__pb2
|
|
21
|
+
from apollo_modules.modules.common_msgs.basic_msgs import vehicle_signal_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_vehicle__signal__pb2
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.modules/common_msgs/chassis_msgs/chassis.proto\x12\rapollo.canbus\x1a\x19google/protobuf/any.proto\x1a\x30modules/common_msgs/basic_msgs/drive_state.proto\x1a-modules/common_msgs/basic_msgs/geometry.proto\x1a+modules/common_msgs/basic_msgs/header.proto\x1a/modules/common_msgs/basic_msgs/vehicle_id.proto\x1a\x33modules/common_msgs/basic_msgs/vehicle_signal.proto\"\x87\x10\n\x07\x43hassis\x12\x16\n\x0e\x65ngine_started\x18\x03 \x01(\x08\x12\x17\n\nengine_rpm\x18\x04 \x01(\x02:\x03nan\x12\x16\n\tspeed_mps\x18\x05 \x01(\x02:\x03nan\x12\x17\n\nodometer_m\x18\x06 \x01(\x02:\x03nan\x12\x14\n\x0c\x66uel_range_m\x18\x07 \x01(\x05\x12 \n\x13throttle_percentage\x18\x08 \x01(\x02:\x03nan\x12\x1d\n\x10\x62rake_percentage\x18\t \x01(\x02:\x03nan\x12 \n\x13steering_percentage\x18\x0b \x01(\x02:\x03nan\x12\x1f\n\x12steering_torque_nm\x18\x0c \x01(\x02:\x03nan\x12\x15\n\rparking_brake\x18\r \x01(\x08\x12\x1c\n\x10high_beam_signal\x18\x0e \x01(\x08\x42\x02\x18\x01\x12\x1b\n\x0flow_beam_signal\x18\x0f \x01(\x08\x42\x02\x18\x01\x12\x1c\n\x10left_turn_signal\x18\x10 \x01(\x08\x42\x02\x18\x01\x12\x1d\n\x11right_turn_signal\x18\x11 \x01(\x08\x42\x02\x18\x01\x12\x10\n\x04horn\x18\x12 \x01(\x08\x42\x02\x18\x01\x12\r\n\x05wiper\x18\x13 \x01(\x08\x12\x1c\n\x10\x64isengage_status\x18\x14 \x01(\x08\x42\x02\x18\x01\x12I\n\x0c\x64riving_mode\x18\x15 \x01(\x0e\x32\".apollo.canbus.Chassis.DrivingMode:\x0f\x43OMPLETE_MANUAL\x12>\n\nerror_code\x18\x16 \x01(\x0e\x32 .apollo.canbus.Chassis.ErrorCode:\x08NO_ERROR\x12:\n\rgear_location\x18\x17 \x01(\x0e\x32#.apollo.canbus.Chassis.GearPosition\x12\x1a\n\x12steering_timestamp\x18\x18 \x01(\x01\x12%\n\x06header\x18\x19 \x01(\x0b\x32\x15.apollo.common.Header\x12\x1d\n\x12\x63hassis_error_mask\x18\x1a \x01(\x05:\x01\x30\x12,\n\x06signal\x18\x1b \x01(\x0b\x32\x1c.apollo.common.VehicleSignal\x12.\n\x0b\x63hassis_gps\x18\x1c \x01(\x0b\x32\x19.apollo.canbus.ChassisGPS\x12\x32\n\rengage_advice\x18\x1d \x01(\x0b\x32\x1b.apollo.common.EngageAdvice\x12.\n\x0bwheel_speed\x18\x1e \x01(\x0b\x32\x19.apollo.canbus.WheelSpeed\x12)\n\x08surround\x18\x1f \x01(\x0b\x32\x17.apollo.canbus.Surround\x12+\n\x07license\x18 \x01(\x0b\x32\x16.apollo.canbus.LicenseB\x02\x18\x01\x12,\n\nvehicle_id\x18! \x01(\x0b\x32\x18.apollo.common.VehicleID\x12\"\n\x16\x62\x61ttery_soc_percentage\x18\" \x01(\x05:\x02-1\x12$\n\x17throttle_percentage_cmd\x18# \x01(\x02:\x03nan\x12!\n\x14\x62rake_percentage_cmd\x18$ \x01(\x02:\x03nan\x12$\n\x17steering_percentage_cmd\x18% \x01(\x02:\x03nan\x12>\n\x12\x66ront_bumper_event\x18& \x01(\x0e\x32\".apollo.canbus.Chassis.BumperEvent\x12=\n\x11\x62\x61\x63k_bumper_event\x18\' \x01(\x0e\x32\".apollo.canbus.Chassis.BumperEvent\x12\x34\n\x0e\x63heck_response\x18( \x01(\x0b\x32\x1c.apollo.canbus.CheckResponse\x12+\n\rcustom_status\x18) \x01(\x0b\x32\x14.google.protobuf.Any\"y\n\x0b\x44rivingMode\x12\x13\n\x0f\x43OMPLETE_MANUAL\x10\x00\x12\x17\n\x13\x43OMPLETE_AUTO_DRIVE\x10\x01\x12\x13\n\x0f\x41UTO_STEER_ONLY\x10\x02\x12\x13\n\x0f\x41UTO_SPEED_ONLY\x10\x03\x12\x12\n\x0e\x45MERGENCY_MODE\x10\x04\"\x80\x02\n\tErrorCode\x12\x0c\n\x08NO_ERROR\x10\x00\x12\x15\n\x11\x43MD_NOT_IN_PERIOD\x10\x01\x12\x11\n\rCHASSIS_ERROR\x10\x02\x12\x1a\n\x16\x43HASSIS_ERROR_ON_STEER\x10\x06\x12\x1a\n\x16\x43HASSIS_ERROR_ON_BRAKE\x10\x07\x12\x1d\n\x19\x43HASSIS_ERROR_ON_THROTTLE\x10\x08\x12\x19\n\x15\x43HASSIS_ERROR_ON_GEAR\x10\t\x12\x17\n\x13MANUAL_INTERVENTION\x10\x03\x12\x1d\n\x19\x43HASSIS_CAN_NOT_IN_PERIOD\x10\x04\x12\x11\n\rUNKNOWN_ERROR\x10\x05\"\x83\x01\n\x0cGearPosition\x12\x10\n\x0cGEAR_NEUTRAL\x10\x00\x12\x0e\n\nGEAR_DRIVE\x10\x01\x12\x10\n\x0cGEAR_REVERSE\x10\x02\x12\x10\n\x0cGEAR_PARKING\x10\x03\x12\x0c\n\x08GEAR_LOW\x10\x04\x12\x10\n\x0cGEAR_INVALID\x10\x05\x12\r\n\tGEAR_NONE\x10\x06\"H\n\x0b\x42umperEvent\x12\x12\n\x0e\x42UMPER_INVALID\x10\x00\x12\x11\n\rBUMPER_NORMAL\x10\x01\x12\x12\n\x0e\x42UMPER_PRESSED\x10\x02\"\x89\x03\n\nChassisGPS\x12\x10\n\x08latitude\x18\x01 \x01(\x01\x12\x11\n\tlongitude\x18\x02 \x01(\x01\x12\x11\n\tgps_valid\x18\x03 \x01(\x08\x12\x0c\n\x04year\x18\x04 \x01(\x05\x12\r\n\x05month\x18\x05 \x01(\x05\x12\x0b\n\x03\x64\x61y\x18\x06 \x01(\x05\x12\r\n\x05hours\x18\x07 \x01(\x05\x12\x0f\n\x07minutes\x18\x08 \x01(\x05\x12\x0f\n\x07seconds\x18\t \x01(\x05\x12\x19\n\x11\x63ompass_direction\x18\n \x01(\x01\x12\x0c\n\x04pdop\x18\x0b \x01(\x01\x12\x14\n\x0cis_gps_fault\x18\x0c \x01(\x08\x12\x13\n\x0bis_inferred\x18\r \x01(\x08\x12\x10\n\x08\x61ltitude\x18\x0e \x01(\x01\x12\x0f\n\x07heading\x18\x0f \x01(\x01\x12\x0c\n\x04hdop\x18\x10 \x01(\x01\x12\x0c\n\x04vdop\x18\x11 \x01(\x01\x12*\n\x07quality\x18\x12 \x01(\x0e\x32\x19.apollo.canbus.GpsQuality\x12\x16\n\x0enum_satellites\x18\x13 \x01(\x05\x12\x11\n\tgps_speed\x18\x14 \x01(\x01\"\x8e\x05\n\nWheelSpeed\x12$\n\x15is_wheel_spd_rr_valid\x18\x01 \x01(\x08:\x05\x66\x61lse\x12M\n\x12wheel_direction_rr\x18\x02 \x01(\x0e\x32(.apollo.canbus.WheelSpeed.WheelSpeedType:\x07INVALID\x12\x17\n\x0cwheel_spd_rr\x18\x03 \x01(\x01:\x01\x30\x12$\n\x15is_wheel_spd_rl_valid\x18\x04 \x01(\x08:\x05\x66\x61lse\x12M\n\x12wheel_direction_rl\x18\x05 \x01(\x0e\x32(.apollo.canbus.WheelSpeed.WheelSpeedType:\x07INVALID\x12\x17\n\x0cwheel_spd_rl\x18\x06 \x01(\x01:\x01\x30\x12$\n\x15is_wheel_spd_fr_valid\x18\x07 \x01(\x08:\x05\x66\x61lse\x12M\n\x12wheel_direction_fr\x18\x08 \x01(\x0e\x32(.apollo.canbus.WheelSpeed.WheelSpeedType:\x07INVALID\x12\x17\n\x0cwheel_spd_fr\x18\t \x01(\x01:\x01\x30\x12$\n\x15is_wheel_spd_fl_valid\x18\n \x01(\x08:\x05\x66\x61lse\x12M\n\x12wheel_direction_fl\x18\x0b \x01(\x0e\x32(.apollo.canbus.WheelSpeed.WheelSpeedType:\x07INVALID\x12\x17\n\x0cwheel_spd_fl\x18\x0c \x01(\x01:\x01\x30\"H\n\x0eWheelSpeedType\x12\x0b\n\x07\x46ORWARD\x10\x00\x12\x0c\n\x08\x42\x41\x43KWARD\x10\x01\x12\x0e\n\nSTANDSTILL\x10\x02\x12\x0b\n\x07INVALID\x10\x03\"p\n\x05Sonar\x12\r\n\x05range\x18\x01 \x01(\x01\x12+\n\x0btranslation\x18\x02 \x01(\x0b\x32\x16.apollo.common.Point3D\x12+\n\x08rotation\x18\x03 \x01(\x0b\x32\x19.apollo.common.Quaternion\"\xe4\x04\n\x08Surround\x12 \n\x18\x63ross_traffic_alert_left\x18\x01 \x01(\x08\x12(\n cross_traffic_alert_left_enabled\x18\x02 \x01(\x08\x12\x1d\n\x15\x62lind_spot_left_alert\x18\x03 \x01(\x08\x12%\n\x1d\x62lind_spot_left_alert_enabled\x18\x04 \x01(\x08\x12!\n\x19\x63ross_traffic_alert_right\x18\x05 \x01(\x08\x12)\n!cross_traffic_alert_right_enabled\x18\x06 \x01(\x08\x12\x1e\n\x16\x62lind_spot_right_alert\x18\x07 \x01(\x08\x12&\n\x1e\x62lind_spot_right_alert_enabled\x18\x08 \x01(\x08\x12\x0f\n\x07sonar00\x18\t \x01(\x01\x12\x0f\n\x07sonar01\x18\n \x01(\x01\x12\x0f\n\x07sonar02\x18\x0b \x01(\x01\x12\x0f\n\x07sonar03\x18\x0c \x01(\x01\x12\x0f\n\x07sonar04\x18\r \x01(\x01\x12\x0f\n\x07sonar05\x18\x0e \x01(\x01\x12\x0f\n\x07sonar06\x18\x0f \x01(\x01\x12\x0f\n\x07sonar07\x18\x10 \x01(\x01\x12\x0f\n\x07sonar08\x18\x11 \x01(\x01\x12\x0f\n\x07sonar09\x18\x12 \x01(\x01\x12\x0f\n\x07sonar10\x18\x13 \x01(\x01\x12\x0f\n\x07sonar11\x18\x14 \x01(\x01\x12\x15\n\rsonar_enabled\x18\x15 \x01(\x08\x12\x13\n\x0bsonar_fault\x18\x16 \x01(\x08\x12\x13\n\x0bsonar_range\x18\x17 \x03(\x01\x12#\n\x05sonar\x18\x18 \x03(\x0b\x32\x14.apollo.canbus.Sonar\"\x1a\n\x07License\x12\x0f\n\x03vin\x18\x01 \x01(\tB\x02\x18\x01\"\xe5\x01\n\rCheckResponse\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*A\n\nGpsQuality\x12\n\n\x06\x46IX_NO\x10\x00\x12\n\n\x06\x46IX_2D\x10\x01\x12\n\n\x06\x46IX_3D\x10\x02\x12\x0f\n\x0b\x46IX_INVALID\x10\x03')
|
|
25
|
+
|
|
26
|
+
_GPSQUALITY = DESCRIPTOR.enum_types_by_name['GpsQuality']
|
|
27
|
+
GpsQuality = enum_type_wrapper.EnumTypeWrapper(_GPSQUALITY)
|
|
28
|
+
FIX_NO = 0
|
|
29
|
+
FIX_2D = 1
|
|
30
|
+
FIX_3D = 2
|
|
31
|
+
FIX_INVALID = 3
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
_CHASSIS = DESCRIPTOR.message_types_by_name['Chassis']
|
|
35
|
+
_CHASSISGPS = DESCRIPTOR.message_types_by_name['ChassisGPS']
|
|
36
|
+
_WHEELSPEED = DESCRIPTOR.message_types_by_name['WheelSpeed']
|
|
37
|
+
_SONAR = DESCRIPTOR.message_types_by_name['Sonar']
|
|
38
|
+
_SURROUND = DESCRIPTOR.message_types_by_name['Surround']
|
|
39
|
+
_LICENSE = DESCRIPTOR.message_types_by_name['License']
|
|
40
|
+
_CHECKRESPONSE = DESCRIPTOR.message_types_by_name['CheckResponse']
|
|
41
|
+
_CHASSIS_DRIVINGMODE = _CHASSIS.enum_types_by_name['DrivingMode']
|
|
42
|
+
_CHASSIS_ERRORCODE = _CHASSIS.enum_types_by_name['ErrorCode']
|
|
43
|
+
_CHASSIS_GEARPOSITION = _CHASSIS.enum_types_by_name['GearPosition']
|
|
44
|
+
_CHASSIS_BUMPEREVENT = _CHASSIS.enum_types_by_name['BumperEvent']
|
|
45
|
+
_WHEELSPEED_WHEELSPEEDTYPE = _WHEELSPEED.enum_types_by_name['WheelSpeedType']
|
|
46
|
+
Chassis = _reflection.GeneratedProtocolMessageType('Chassis', (_message.Message,), {
|
|
47
|
+
'DESCRIPTOR' : _CHASSIS,
|
|
48
|
+
'__module__' : 'modules.common_msgs.chassis_msgs.chassis_pb2'
|
|
49
|
+
# @@protoc_insertion_point(class_scope:apollo.canbus.Chassis)
|
|
50
|
+
})
|
|
51
|
+
_sym_db.RegisterMessage(Chassis)
|
|
52
|
+
|
|
53
|
+
ChassisGPS = _reflection.GeneratedProtocolMessageType('ChassisGPS', (_message.Message,), {
|
|
54
|
+
'DESCRIPTOR' : _CHASSISGPS,
|
|
55
|
+
'__module__' : 'modules.common_msgs.chassis_msgs.chassis_pb2'
|
|
56
|
+
# @@protoc_insertion_point(class_scope:apollo.canbus.ChassisGPS)
|
|
57
|
+
})
|
|
58
|
+
_sym_db.RegisterMessage(ChassisGPS)
|
|
59
|
+
|
|
60
|
+
WheelSpeed = _reflection.GeneratedProtocolMessageType('WheelSpeed', (_message.Message,), {
|
|
61
|
+
'DESCRIPTOR' : _WHEELSPEED,
|
|
62
|
+
'__module__' : 'modules.common_msgs.chassis_msgs.chassis_pb2'
|
|
63
|
+
# @@protoc_insertion_point(class_scope:apollo.canbus.WheelSpeed)
|
|
64
|
+
})
|
|
65
|
+
_sym_db.RegisterMessage(WheelSpeed)
|
|
66
|
+
|
|
67
|
+
Sonar = _reflection.GeneratedProtocolMessageType('Sonar', (_message.Message,), {
|
|
68
|
+
'DESCRIPTOR' : _SONAR,
|
|
69
|
+
'__module__' : 'modules.common_msgs.chassis_msgs.chassis_pb2'
|
|
70
|
+
# @@protoc_insertion_point(class_scope:apollo.canbus.Sonar)
|
|
71
|
+
})
|
|
72
|
+
_sym_db.RegisterMessage(Sonar)
|
|
73
|
+
|
|
74
|
+
Surround = _reflection.GeneratedProtocolMessageType('Surround', (_message.Message,), {
|
|
75
|
+
'DESCRIPTOR' : _SURROUND,
|
|
76
|
+
'__module__' : 'modules.common_msgs.chassis_msgs.chassis_pb2'
|
|
77
|
+
# @@protoc_insertion_point(class_scope:apollo.canbus.Surround)
|
|
78
|
+
})
|
|
79
|
+
_sym_db.RegisterMessage(Surround)
|
|
80
|
+
|
|
81
|
+
License = _reflection.GeneratedProtocolMessageType('License', (_message.Message,), {
|
|
82
|
+
'DESCRIPTOR' : _LICENSE,
|
|
83
|
+
'__module__' : 'modules.common_msgs.chassis_msgs.chassis_pb2'
|
|
84
|
+
# @@protoc_insertion_point(class_scope:apollo.canbus.License)
|
|
85
|
+
})
|
|
86
|
+
_sym_db.RegisterMessage(License)
|
|
87
|
+
|
|
88
|
+
CheckResponse = _reflection.GeneratedProtocolMessageType('CheckResponse', (_message.Message,), {
|
|
89
|
+
'DESCRIPTOR' : _CHECKRESPONSE,
|
|
90
|
+
'__module__' : 'modules.common_msgs.chassis_msgs.chassis_pb2'
|
|
91
|
+
# @@protoc_insertion_point(class_scope:apollo.canbus.CheckResponse)
|
|
92
|
+
})
|
|
93
|
+
_sym_db.RegisterMessage(CheckResponse)
|
|
94
|
+
|
|
95
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
96
|
+
|
|
97
|
+
DESCRIPTOR._options = None
|
|
98
|
+
_CHASSIS.fields_by_name['high_beam_signal']._options = None
|
|
99
|
+
_CHASSIS.fields_by_name['high_beam_signal']._serialized_options = b'\030\001'
|
|
100
|
+
_CHASSIS.fields_by_name['low_beam_signal']._options = None
|
|
101
|
+
_CHASSIS.fields_by_name['low_beam_signal']._serialized_options = b'\030\001'
|
|
102
|
+
_CHASSIS.fields_by_name['left_turn_signal']._options = None
|
|
103
|
+
_CHASSIS.fields_by_name['left_turn_signal']._serialized_options = b'\030\001'
|
|
104
|
+
_CHASSIS.fields_by_name['right_turn_signal']._options = None
|
|
105
|
+
_CHASSIS.fields_by_name['right_turn_signal']._serialized_options = b'\030\001'
|
|
106
|
+
_CHASSIS.fields_by_name['horn']._options = None
|
|
107
|
+
_CHASSIS.fields_by_name['horn']._serialized_options = b'\030\001'
|
|
108
|
+
_CHASSIS.fields_by_name['disengage_status']._options = None
|
|
109
|
+
_CHASSIS.fields_by_name['disengage_status']._serialized_options = b'\030\001'
|
|
110
|
+
_CHASSIS.fields_by_name['license']._options = None
|
|
111
|
+
_CHASSIS.fields_by_name['license']._serialized_options = b'\030\001'
|
|
112
|
+
_LICENSE.fields_by_name['vin']._options = None
|
|
113
|
+
_LICENSE.fields_by_name['vin']._serialized_options = b'\030\001'
|
|
114
|
+
_GPSQUALITY._serialized_start=4436
|
|
115
|
+
_GPSQUALITY._serialized_end=4501
|
|
116
|
+
_CHASSIS._serialized_start=337
|
|
117
|
+
_CHASSIS._serialized_end=2392
|
|
118
|
+
_CHASSIS_DRIVINGMODE._serialized_start=1804
|
|
119
|
+
_CHASSIS_DRIVINGMODE._serialized_end=1925
|
|
120
|
+
_CHASSIS_ERRORCODE._serialized_start=1928
|
|
121
|
+
_CHASSIS_ERRORCODE._serialized_end=2184
|
|
122
|
+
_CHASSIS_GEARPOSITION._serialized_start=2187
|
|
123
|
+
_CHASSIS_GEARPOSITION._serialized_end=2318
|
|
124
|
+
_CHASSIS_BUMPEREVENT._serialized_start=2320
|
|
125
|
+
_CHASSIS_BUMPEREVENT._serialized_end=2392
|
|
126
|
+
_CHASSISGPS._serialized_start=2395
|
|
127
|
+
_CHASSISGPS._serialized_end=2788
|
|
128
|
+
_WHEELSPEED._serialized_start=2791
|
|
129
|
+
_WHEELSPEED._serialized_end=3445
|
|
130
|
+
_WHEELSPEED_WHEELSPEEDTYPE._serialized_start=3373
|
|
131
|
+
_WHEELSPEED_WHEELSPEEDTYPE._serialized_end=3445
|
|
132
|
+
_SONAR._serialized_start=3447
|
|
133
|
+
_SONAR._serialized_end=3559
|
|
134
|
+
_SURROUND._serialized_start=3562
|
|
135
|
+
_SURROUND._serialized_end=4174
|
|
136
|
+
_LICENSE._serialized_start=4176
|
|
137
|
+
_LICENSE._serialized_end=4202
|
|
138
|
+
_CHECKRESPONSE._serialized_start=4205
|
|
139
|
+
_CHECKRESPONSE._serialized_end=4434
|
|
140
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: modules/common_msgs/control_msgs/control_cmd.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import enum_type_wrapper
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import message as _message
|
|
9
|
+
from google.protobuf import reflection as _reflection
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
# @@protoc_insertion_point(imports)
|
|
12
|
+
|
|
13
|
+
_sym_db = _symbol_database.Default()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
|
|
17
|
+
from apollo_modules.modules.common_msgs.basic_msgs import drive_state_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_drive__state__pb2
|
|
18
|
+
from apollo_modules.modules.common_msgs.basic_msgs import header_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_header__pb2
|
|
19
|
+
from apollo_modules.modules.common_msgs.basic_msgs import pnc_point_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_pnc__point__pb2
|
|
20
|
+
from apollo_modules.modules.common_msgs.basic_msgs import vehicle_signal_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_vehicle__signal__pb2
|
|
21
|
+
from apollo_modules.modules.common_msgs.chassis_msgs import chassis_pb2 as modules_dot_common__msgs_dot_chassis__msgs_dot_chassis__pb2
|
|
22
|
+
from apollo_modules.modules.common_msgs.control_msgs import input_debug_pb2 as modules_dot_common__msgs_dot_control__msgs_dot_input__debug__pb2
|
|
23
|
+
from apollo_modules.modules.common_msgs.control_msgs import pad_msg_pb2 as modules_dot_common__msgs_dot_control__msgs_dot_pad__msg__pb2
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2modules/common_msgs/control_msgs/control_cmd.proto\x12\x0e\x61pollo.control\x1a\x19google/protobuf/any.proto\x1a\x30modules/common_msgs/basic_msgs/drive_state.proto\x1a+modules/common_msgs/basic_msgs/header.proto\x1a.modules/common_msgs/basic_msgs/pnc_point.proto\x1a\x33modules/common_msgs/basic_msgs/vehicle_signal.proto\x1a.modules/common_msgs/chassis_msgs/chassis.proto\x1a\x32modules/common_msgs/control_msgs/input_debug.proto\x1a.modules/common_msgs/control_msgs/pad_msg.proto\"^\n\x0cLatencyStats\x12\x15\n\rtotal_time_ms\x18\x01 \x01(\x01\x12\x1a\n\x12\x63ontroller_time_ms\x18\x02 \x03(\x01\x12\x1b\n\x13total_time_exceeded\x18\x03 \x01(\x08\"\xb7\x06\n\x0e\x43ontrolCommand\x12%\n\x06header\x18\x01 \x01(\x0b\x32\x15.apollo.common.Header\x12\x10\n\x08throttle\x18\x03 \x01(\x01\x12\r\n\x05\x62rake\x18\x04 \x01(\x01\x12\x15\n\rsteering_rate\x18\x06 \x01(\x01\x12\x17\n\x0fsteering_target\x18\x07 \x01(\x01\x12\x15\n\rparking_brake\x18\x08 \x01(\x08\x12\r\n\x05speed\x18\t \x01(\x01\x12\x14\n\x0c\x61\x63\x63\x65leration\x18\n \x01(\x01\x12\x17\n\x0breset_model\x18\x10 \x01(\x08\x42\x02\x18\x01\x12\x15\n\rengine_on_off\x18\x11 \x01(\x08\x12\x1b\n\x13trajectory_fraction\x18\x12 \x01(\x01\x12<\n\x0c\x64riving_mode\x18\x13 \x01(\x0e\x32\".apollo.canbus.Chassis.DrivingModeB\x02\x18\x01\x12:\n\rgear_location\x18\x14 \x01(\x0e\x32#.apollo.canbus.Chassis.GearPosition\x12$\n\x05\x64\x65\x62ug\x18\x16 \x01(\x0b\x32\x15.apollo.control.Debug\x12,\n\x06signal\x18\x17 \x01(\x0b\x32\x1c.apollo.common.VehicleSignal\x12\x33\n\rlatency_stats\x18\x18 \x01(\x0b\x32\x1c.apollo.control.LatencyStats\x12+\n\x07pad_msg\x18\x19 \x01(\x0b\x32\x1a.apollo.control.PadMessage\x12\x32\n\rengage_advice\x18\x1a \x01(\x0b\x32\x1b.apollo.common.EngageAdvice\x12\x1e\n\x0fis_in_safe_mode\x18\x1b \x01(\x08:\x05\x66\x61lse\x12\x15\n\tleft_turn\x18\r \x01(\x08\x42\x02\x18\x01\x12\x16\n\nright_turn\x18\x0e \x01(\x08\x42\x02\x18\x01\x12\x15\n\thigh_beam\x18\x0b \x01(\x08\x42\x02\x18\x01\x12\x14\n\x08low_beam\x18\x0c \x01(\x08\x42\x02\x18\x01\x12\x10\n\x04horn\x18\x0f \x01(\x08\x42\x02\x18\x01\x12\x32\n\nturnsignal\x18\x15 \x01(\x0e\x32\x1a.apollo.control.TurnSignalB\x02\x18\x01\"\x9c\n\n\x17SimpleLongitudinalDebug\x12\x19\n\x11station_reference\x18\x01 \x01(\x01\x12\x15\n\rstation_error\x18\x02 \x01(\x01\x12\x1d\n\x15station_error_limited\x18\x03 \x01(\x01\x12\x1d\n\x15preview_station_error\x18\x04 \x01(\x01\x12\x17\n\x0fspeed_reference\x18\x05 \x01(\x01\x12\x13\n\x0bspeed_error\x18\x06 \x01(\x01\x12&\n\x1espeed_controller_input_limited\x18\x07 \x01(\x01\x12\x1f\n\x17preview_speed_reference\x18\x08 \x01(\x01\x12\x1b\n\x13preview_speed_error\x18\t \x01(\x01\x12&\n\x1epreview_acceleration_reference\x18\n \x01(\x01\x12\"\n\x1a\x61\x63\x63\x65leration_cmd_closeloop\x18\x0b \x01(\x01\x12\x18\n\x10\x61\x63\x63\x65leration_cmd\x18\x0c \x01(\x01\x12\x1b\n\x13\x61\x63\x63\x65leration_lookup\x18\r \x01(\x01\x12\x14\n\x0cspeed_lookup\x18\x0e \x01(\x01\x12\x19\n\x11\x63\x61libration_value\x18\x0f \x01(\x01\x12\x14\n\x0cthrottle_cmd\x18\x10 \x01(\x01\x12\x11\n\tbrake_cmd\x18\x11 \x01(\x01\x12\x14\n\x0cis_full_stop\x18\x12 \x01(\x08\x12!\n\x19slope_offset_compensation\x18\x13 \x01(\x01\x12\x17\n\x0f\x63urrent_station\x18\x14 \x01(\x01\x12\x13\n\x0bpath_remain\x18\x15 \x01(\x01\x12\x1d\n\x15pid_saturation_status\x18\x16 \x01(\x05\x12!\n\x19leadlag_saturation_status\x18\x17 \x01(\x05\x12\x14\n\x0cspeed_offset\x18\x18 \x01(\x01\x12\x15\n\rcurrent_speed\x18\x19 \x01(\x01\x12\x1e\n\x16\x61\x63\x63\x65leration_reference\x18\x1a \x01(\x01\x12\x1c\n\x14\x63urrent_acceleration\x18\x1b \x01(\x01\x12\x1a\n\x12\x61\x63\x63\x65leration_error\x18\x1c \x01(\x01\x12\x16\n\x0ejerk_reference\x18\x1d \x01(\x01\x12\x14\n\x0c\x63urrent_jerk\x18\x1e \x01(\x01\x12\x12\n\njerk_error\x18\x1f \x01(\x01\x12=\n\x15\x63urrent_matched_point\x18 \x01(\x0b\x32\x1e.apollo.common.TrajectoryPoint\x12?\n\x17\x63urrent_reference_point\x18! \x01(\x0b\x32\x1e.apollo.common.TrajectoryPoint\x12?\n\x17preview_reference_point\x18\" \x01(\x0b\x32\x1e.apollo.common.TrajectoryPoint\x12!\n\x19\x61\x63\x63\x65leration_lookup_limit\x18# \x01(\x01\x12\x15\n\rvehicle_pitch\x18$ \x01(\x01\x12\x14\n\x0cis_epb_brake\x18% \x01(\x08\x12\x1e\n\x16\x63urrent_steer_interval\x18& \x01(\x01\x12\x15\n\ris_wait_steer\x18\' \x01(\x08\x12%\n\x1dis_stop_reason_by_destination\x18( \x01(\x08\x12$\n\x1cis_stop_reason_by_prdestrian\x18) \x01(\x08\x12\x19\n\x11is_full_stop_soft\x18* \x01(\x08\"\x93\x08\n\x12SimpleLateralDebug\x12\x15\n\rlateral_error\x18\x01 \x01(\x01\x12\x13\n\x0bref_heading\x18\x02 \x01(\x01\x12\x0f\n\x07heading\x18\x03 \x01(\x01\x12\x15\n\rheading_error\x18\x04 \x01(\x01\x12\x1a\n\x12heading_error_rate\x18\x05 \x01(\x01\x12\x1a\n\x12lateral_error_rate\x18\x06 \x01(\x01\x12\x11\n\tcurvature\x18\x07 \x01(\x01\x12\x13\n\x0bsteer_angle\x18\x08 \x01(\x01\x12\x1f\n\x17steer_angle_feedforward\x18\t \x01(\x01\x12(\n steer_angle_lateral_contribution\x18\n \x01(\x01\x12-\n%steer_angle_lateral_rate_contribution\x18\x0b \x01(\x01\x12(\n steer_angle_heading_contribution\x18\x0c \x01(\x01\x12-\n%steer_angle_heading_rate_contribution\x18\r \x01(\x01\x12\x1c\n\x14steer_angle_feedback\x18\x0e \x01(\x01\x12\x19\n\x11steering_position\x18\x0f \x01(\x01\x12\x11\n\tref_speed\x18\x10 \x01(\x01\x12\x1b\n\x13steer_angle_limited\x18\x11 \x01(\x01\x12\x1c\n\x14lateral_acceleration\x18\x12 \x01(\x01\x12\x14\n\x0clateral_jerk\x18\x13 \x01(\x01\x12\x18\n\x10ref_heading_rate\x18\x14 \x01(\x01\x12\x14\n\x0cheading_rate\x18\x15 \x01(\x01\x12 \n\x18ref_heading_acceleration\x18\x16 \x01(\x01\x12\x1c\n\x14heading_acceleration\x18\x17 \x01(\x01\x12\"\n\x1aheading_error_acceleration\x18\x18 \x01(\x01\x12\x18\n\x10ref_heading_jerk\x18\x19 \x01(\x01\x12\x14\n\x0cheading_jerk\x18\x1a \x01(\x01\x12\x1a\n\x12heading_error_jerk\x18\x1b \x01(\x01\x12\x1e\n\x16lateral_error_feedback\x18\x1c \x01(\x01\x12\x1e\n\x16heading_error_feedback\x18\x1d \x01(\x01\x12<\n\x14\x63urrent_target_point\x18\x1e \x01(\x0b\x32\x1e.apollo.common.TrajectoryPoint\x12$\n\x1csteer_angle_feedback_augment\x18\x1f \x01(\x01\x12\x33\n\x10steer_mrac_debug\x18 \x01(\x0b\x32\x19.apollo.control.MracDebug\x12 \n\x18steer_mrac_enable_status\x18! \x01(\x08\"\xab\x0f\n\x0eSimpleMPCDebug\x12\x15\n\rlateral_error\x18\x01 \x01(\x01\x12\x13\n\x0bref_heading\x18\x02 \x01(\x01\x12\x0f\n\x07heading\x18\x03 \x01(\x01\x12\x15\n\rheading_error\x18\x04 \x01(\x01\x12\x1a\n\x12heading_error_rate\x18\x05 \x01(\x01\x12\x1a\n\x12lateral_error_rate\x18\x06 \x01(\x01\x12\x11\n\tcurvature\x18\x07 \x01(\x01\x12\x13\n\x0bsteer_angle\x18\x08 \x01(\x01\x12\x1f\n\x17steer_angle_feedforward\x18\t \x01(\x01\x12(\n steer_angle_lateral_contribution\x18\n \x01(\x01\x12-\n%steer_angle_lateral_rate_contribution\x18\x0b \x01(\x01\x12(\n steer_angle_heading_contribution\x18\x0c \x01(\x01\x12-\n%steer_angle_heading_rate_contribution\x18\r \x01(\x01\x12\x1c\n\x14steer_angle_feedback\x18\x0e \x01(\x01\x12\x19\n\x11steering_position\x18\x0f \x01(\x01\x12\x11\n\tref_speed\x18\x10 \x01(\x01\x12\x1b\n\x13steer_angle_limited\x18\x11 \x01(\x01\x12\x19\n\x11station_reference\x18\x12 \x01(\x01\x12\x15\n\rstation_error\x18\x13 \x01(\x01\x12\x17\n\x0fspeed_reference\x18\x14 \x01(\x01\x12\x13\n\x0bspeed_error\x18\x15 \x01(\x01\x12\x1e\n\x16\x61\x63\x63\x65leration_reference\x18\x16 \x01(\x01\x12\x14\n\x0cis_full_stop\x18\x17 \x01(\x08\x12\x18\n\x10station_feedback\x18\x18 \x01(\x01\x12\x16\n\x0espeed_feedback\x18\x19 \x01(\x01\x12\"\n\x1a\x61\x63\x63\x65leration_cmd_closeloop\x18\x1a \x01(\x01\x12\x18\n\x10\x61\x63\x63\x65leration_cmd\x18\x1b \x01(\x01\x12\x1b\n\x13\x61\x63\x63\x65leration_lookup\x18\x1c \x01(\x01\x12\x14\n\x0cspeed_lookup\x18\x1d \x01(\x01\x12\x19\n\x11\x63\x61libration_value\x18\x1e \x01(\x01\x12(\n steer_unconstrained_control_diff\x18\x1f \x01(\x01\x12,\n$steer_angle_feedforward_compensation\x18 \x01(\x01\x12\x18\n\x10matrix_q_updated\x18! \x03(\x01\x12\x18\n\x10matrix_r_updated\x18\" \x03(\x01\x12\x1c\n\x14lateral_acceleration\x18# \x01(\x01\x12\x14\n\x0clateral_jerk\x18$ \x01(\x01\x12\x18\n\x10ref_heading_rate\x18% \x01(\x01\x12\x14\n\x0cheading_rate\x18& \x01(\x01\x12 \n\x18ref_heading_acceleration\x18\' \x01(\x01\x12\x1c\n\x14heading_acceleration\x18( \x01(\x01\x12\"\n\x1aheading_error_acceleration\x18) \x01(\x01\x12\x18\n\x10ref_heading_jerk\x18* \x01(\x01\x12\x14\n\x0cheading_jerk\x18+ \x01(\x01\x12\x1a\n\x12heading_error_jerk\x18, \x01(\x01\x12\x1d\n\x15\x61\x63\x63\x65leration_feedback\x18- \x01(\x01\x12\x1a\n\x12\x61\x63\x63\x65leration_error\x18. \x01(\x01\x12\x16\n\x0ejerk_reference\x18/ \x01(\x01\x12\x15\n\rjerk_feedback\x18\x30 \x01(\x01\x12\x12\n\njerk_error\x18\x31 \x01(\x01\x12\x1e\n\x16lateral_error_feedback\x18\x32 \x01(\x01\x12\x1e\n\x16heading_error_feedback\x18\x33 \x01(\x01\x12$\n\x1csteer_angle_feedback_augment\x18\x34 \x01(\x01\x12=\n\x15\x63urrent_matched_point\x18\x35 \x01(\x0b\x32\x1e.apollo.common.TrajectoryPoint\x12?\n\x17\x63urrent_reference_point\x18\x36 \x01(\x0b\x32\x1e.apollo.common.TrajectoryPoint\x12?\n\x17preview_reference_point\x18\x37 \x01(\x0b\x32\x1e.apollo.common.TrajectoryPoint\x12\x1d\n\x15preview_station_error\x18\x38 \x01(\x01\x12\x1f\n\x17preview_speed_reference\x18\x39 \x01(\x01\x12\x1b\n\x13preview_speed_error\x18: \x01(\x01\x12&\n\x1epreview_acceleration_reference\x18; \x01(\x01\x12\x15\n\rvehicle_pitch\x18< \x01(\x01\x12!\n\x19slope_offset_compensation\x18= \x01(\x01\x12\x13\n\x0bpath_remain\x18> \x01(\x01\x12\"\n\x1a\x61\x63\x63\x65leration_lookup_offset\x18? \x01(\x01\x12\x18\n\x10\x61\x63\x63\x65leration_vrf\x18@ \x01(\x01\"\xed\x01\n\tMracDebug\x12\x18\n\x10mrac_model_order\x18\x01 \x01(\x05\x12\x1c\n\x14mrac_reference_state\x18\x02 \x03(\x01\x12\x18\n\x10mrac_state_error\x18\x03 \x03(\x01\x12<\n\x12mrac_adaptive_gain\x18\x04 \x01(\x0b\x32 .apollo.control.MracAdaptiveGain\x12(\n mrac_reference_saturation_status\x18\x05 \x01(\x05\x12&\n\x1emrac_control_saturation_status\x18\x06 \x01(\x05\"m\n\x10MracAdaptiveGain\x12\x1b\n\x13state_adaptive_gain\x18\x01 \x03(\x01\x12\x1b\n\x13input_adaptive_gain\x18\x02 \x03(\x01\x12\x1f\n\x17nonlinear_adaptive_gain\x18\x03 \x03(\x01\"\xf3\x01\n\x05\x44\x65\x62ug\x12\x41\n\x10simple_lon_debug\x18\x01 \x01(\x0b\x32\'.apollo.control.SimpleLongitudinalDebug\x12<\n\x10simple_lat_debug\x18\x02 \x01(\x0b\x32\".apollo.control.SimpleLateralDebug\x12/\n\x0binput_debug\x18\x03 \x01(\x0b\x32\x1a.apollo.control.InputDebug\x12\x38\n\x10simple_mpc_debug\x18\x04 \x01(\x0b\x32\x1e.apollo.control.SimpleMPCDebug*:\n\nTurnSignal\x12\r\n\tTURN_NONE\x10\x00\x12\r\n\tTURN_LEFT\x10\x01\x12\x0e\n\nTURN_RIGHT\x10\x02')
|
|
27
|
+
|
|
28
|
+
_TURNSIGNAL = DESCRIPTOR.enum_types_by_name['TurnSignal']
|
|
29
|
+
TurnSignal = enum_type_wrapper.EnumTypeWrapper(_TURNSIGNAL)
|
|
30
|
+
TURN_NONE = 0
|
|
31
|
+
TURN_LEFT = 1
|
|
32
|
+
TURN_RIGHT = 2
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
_LATENCYSTATS = DESCRIPTOR.message_types_by_name['LatencyStats']
|
|
36
|
+
_CONTROLCOMMAND = DESCRIPTOR.message_types_by_name['ControlCommand']
|
|
37
|
+
_SIMPLELONGITUDINALDEBUG = DESCRIPTOR.message_types_by_name['SimpleLongitudinalDebug']
|
|
38
|
+
_SIMPLELATERALDEBUG = DESCRIPTOR.message_types_by_name['SimpleLateralDebug']
|
|
39
|
+
_SIMPLEMPCDEBUG = DESCRIPTOR.message_types_by_name['SimpleMPCDebug']
|
|
40
|
+
_MRACDEBUG = DESCRIPTOR.message_types_by_name['MracDebug']
|
|
41
|
+
_MRACADAPTIVEGAIN = DESCRIPTOR.message_types_by_name['MracAdaptiveGain']
|
|
42
|
+
_DEBUG = DESCRIPTOR.message_types_by_name['Debug']
|
|
43
|
+
LatencyStats = _reflection.GeneratedProtocolMessageType('LatencyStats', (_message.Message,), {
|
|
44
|
+
'DESCRIPTOR' : _LATENCYSTATS,
|
|
45
|
+
'__module__' : 'modules.common_msgs.control_msgs.control_cmd_pb2'
|
|
46
|
+
# @@protoc_insertion_point(class_scope:apollo.control.LatencyStats)
|
|
47
|
+
})
|
|
48
|
+
_sym_db.RegisterMessage(LatencyStats)
|
|
49
|
+
|
|
50
|
+
ControlCommand = _reflection.GeneratedProtocolMessageType('ControlCommand', (_message.Message,), {
|
|
51
|
+
'DESCRIPTOR' : _CONTROLCOMMAND,
|
|
52
|
+
'__module__' : 'modules.common_msgs.control_msgs.control_cmd_pb2'
|
|
53
|
+
# @@protoc_insertion_point(class_scope:apollo.control.ControlCommand)
|
|
54
|
+
})
|
|
55
|
+
_sym_db.RegisterMessage(ControlCommand)
|
|
56
|
+
|
|
57
|
+
SimpleLongitudinalDebug = _reflection.GeneratedProtocolMessageType('SimpleLongitudinalDebug', (_message.Message,), {
|
|
58
|
+
'DESCRIPTOR' : _SIMPLELONGITUDINALDEBUG,
|
|
59
|
+
'__module__' : 'modules.common_msgs.control_msgs.control_cmd_pb2'
|
|
60
|
+
# @@protoc_insertion_point(class_scope:apollo.control.SimpleLongitudinalDebug)
|
|
61
|
+
})
|
|
62
|
+
_sym_db.RegisterMessage(SimpleLongitudinalDebug)
|
|
63
|
+
|
|
64
|
+
SimpleLateralDebug = _reflection.GeneratedProtocolMessageType('SimpleLateralDebug', (_message.Message,), {
|
|
65
|
+
'DESCRIPTOR' : _SIMPLELATERALDEBUG,
|
|
66
|
+
'__module__' : 'modules.common_msgs.control_msgs.control_cmd_pb2'
|
|
67
|
+
# @@protoc_insertion_point(class_scope:apollo.control.SimpleLateralDebug)
|
|
68
|
+
})
|
|
69
|
+
_sym_db.RegisterMessage(SimpleLateralDebug)
|
|
70
|
+
|
|
71
|
+
SimpleMPCDebug = _reflection.GeneratedProtocolMessageType('SimpleMPCDebug', (_message.Message,), {
|
|
72
|
+
'DESCRIPTOR' : _SIMPLEMPCDEBUG,
|
|
73
|
+
'__module__' : 'modules.common_msgs.control_msgs.control_cmd_pb2'
|
|
74
|
+
# @@protoc_insertion_point(class_scope:apollo.control.SimpleMPCDebug)
|
|
75
|
+
})
|
|
76
|
+
_sym_db.RegisterMessage(SimpleMPCDebug)
|
|
77
|
+
|
|
78
|
+
MracDebug = _reflection.GeneratedProtocolMessageType('MracDebug', (_message.Message,), {
|
|
79
|
+
'DESCRIPTOR' : _MRACDEBUG,
|
|
80
|
+
'__module__' : 'modules.common_msgs.control_msgs.control_cmd_pb2'
|
|
81
|
+
# @@protoc_insertion_point(class_scope:apollo.control.MracDebug)
|
|
82
|
+
})
|
|
83
|
+
_sym_db.RegisterMessage(MracDebug)
|
|
84
|
+
|
|
85
|
+
MracAdaptiveGain = _reflection.GeneratedProtocolMessageType('MracAdaptiveGain', (_message.Message,), {
|
|
86
|
+
'DESCRIPTOR' : _MRACADAPTIVEGAIN,
|
|
87
|
+
'__module__' : 'modules.common_msgs.control_msgs.control_cmd_pb2'
|
|
88
|
+
# @@protoc_insertion_point(class_scope:apollo.control.MracAdaptiveGain)
|
|
89
|
+
})
|
|
90
|
+
_sym_db.RegisterMessage(MracAdaptiveGain)
|
|
91
|
+
|
|
92
|
+
Debug = _reflection.GeneratedProtocolMessageType('Debug', (_message.Message,), {
|
|
93
|
+
'DESCRIPTOR' : _DEBUG,
|
|
94
|
+
'__module__' : 'modules.common_msgs.control_msgs.control_cmd_pb2'
|
|
95
|
+
# @@protoc_insertion_point(class_scope:apollo.control.Debug)
|
|
96
|
+
})
|
|
97
|
+
_sym_db.RegisterMessage(Debug)
|
|
98
|
+
|
|
99
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
100
|
+
|
|
101
|
+
DESCRIPTOR._options = None
|
|
102
|
+
_CONTROLCOMMAND.fields_by_name['reset_model']._options = None
|
|
103
|
+
_CONTROLCOMMAND.fields_by_name['reset_model']._serialized_options = b'\030\001'
|
|
104
|
+
_CONTROLCOMMAND.fields_by_name['driving_mode']._options = None
|
|
105
|
+
_CONTROLCOMMAND.fields_by_name['driving_mode']._serialized_options = b'\030\001'
|
|
106
|
+
_CONTROLCOMMAND.fields_by_name['left_turn']._options = None
|
|
107
|
+
_CONTROLCOMMAND.fields_by_name['left_turn']._serialized_options = b'\030\001'
|
|
108
|
+
_CONTROLCOMMAND.fields_by_name['right_turn']._options = None
|
|
109
|
+
_CONTROLCOMMAND.fields_by_name['right_turn']._serialized_options = b'\030\001'
|
|
110
|
+
_CONTROLCOMMAND.fields_by_name['high_beam']._options = None
|
|
111
|
+
_CONTROLCOMMAND.fields_by_name['high_beam']._serialized_options = b'\030\001'
|
|
112
|
+
_CONTROLCOMMAND.fields_by_name['low_beam']._options = None
|
|
113
|
+
_CONTROLCOMMAND.fields_by_name['low_beam']._serialized_options = b'\030\001'
|
|
114
|
+
_CONTROLCOMMAND.fields_by_name['horn']._options = None
|
|
115
|
+
_CONTROLCOMMAND.fields_by_name['horn']._serialized_options = b'\030\001'
|
|
116
|
+
_CONTROLCOMMAND.fields_by_name['turnsignal']._options = None
|
|
117
|
+
_CONTROLCOMMAND.fields_by_name['turnsignal']._serialized_options = b'\030\001'
|
|
118
|
+
_TURNSIGNAL._serialized_start=6283
|
|
119
|
+
_TURNSIGNAL._serialized_end=6341
|
|
120
|
+
_LATENCYSTATS._serialized_start=441
|
|
121
|
+
_LATENCYSTATS._serialized_end=535
|
|
122
|
+
_CONTROLCOMMAND._serialized_start=538
|
|
123
|
+
_CONTROLCOMMAND._serialized_end=1361
|
|
124
|
+
_SIMPLELONGITUDINALDEBUG._serialized_start=1364
|
|
125
|
+
_SIMPLELONGITUDINALDEBUG._serialized_end=2672
|
|
126
|
+
_SIMPLELATERALDEBUG._serialized_start=2675
|
|
127
|
+
_SIMPLELATERALDEBUG._serialized_end=3718
|
|
128
|
+
_SIMPLEMPCDEBUG._serialized_start=3721
|
|
129
|
+
_SIMPLEMPCDEBUG._serialized_end=5684
|
|
130
|
+
_MRACDEBUG._serialized_start=5687
|
|
131
|
+
_MRACDEBUG._serialized_end=5924
|
|
132
|
+
_MRACADAPTIVEGAIN._serialized_start=5926
|
|
133
|
+
_MRACADAPTIVEGAIN._serialized_end=6035
|
|
134
|
+
_DEBUG._serialized_start=6038
|
|
135
|
+
_DEBUG._serialized_end=6281
|
|
136
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: modules/common_msgs/control_msgs/pad_msg.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import enum_type_wrapper
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import message as _message
|
|
9
|
+
from google.protobuf import reflection as _reflection
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
# @@protoc_insertion_point(imports)
|
|
12
|
+
|
|
13
|
+
_sym_db = _symbol_database.Default()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from apollo_modules.modules.common_msgs.basic_msgs import header_pb2 as modules_dot_common__msgs_dot_basic__msgs_dot_header__pb2
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.modules/common_msgs/control_msgs/pad_msg.proto\x12\x0e\x61pollo.control\x1a+modules/common_msgs/basic_msgs/header.proto\"b\n\nPadMessage\x12%\n\x06header\x18\x01 \x01(\x0b\x32\x15.apollo.common.Header\x12-\n\x06\x61\x63tion\x18\x02 \x01(\x0e\x32\x1d.apollo.control.DrivingAction*2\n\rDrivingAction\x12\t\n\x05START\x10\x01\x12\t\n\x05RESET\x10\x02\x12\x0b\n\x07VIN_REQ\x10\x03')
|
|
20
|
+
|
|
21
|
+
_DRIVINGACTION = DESCRIPTOR.enum_types_by_name['DrivingAction']
|
|
22
|
+
DrivingAction = enum_type_wrapper.EnumTypeWrapper(_DRIVINGACTION)
|
|
23
|
+
START = 1
|
|
24
|
+
RESET = 2
|
|
25
|
+
VIN_REQ = 3
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
_PADMESSAGE = DESCRIPTOR.message_types_by_name['PadMessage']
|
|
29
|
+
PadMessage = _reflection.GeneratedProtocolMessageType('PadMessage', (_message.Message,), {
|
|
30
|
+
'DESCRIPTOR' : _PADMESSAGE,
|
|
31
|
+
'__module__' : 'modules.common_msgs.control_msgs.pad_msg_pb2'
|
|
32
|
+
# @@protoc_insertion_point(class_scope:apollo.control.PadMessage)
|
|
33
|
+
})
|
|
34
|
+
_sym_db.RegisterMessage(PadMessage)
|
|
35
|
+
|
|
36
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
37
|
+
|
|
38
|
+
DESCRIPTOR._options = None
|
|
39
|
+
_DRIVINGACTION._serialized_start=211
|
|
40
|
+
_DRIVINGACTION._serialized_end=261
|
|
41
|
+
_PADMESSAGE._serialized_start=111
|
|
42
|
+
_PADMESSAGE._serialized_end=209
|
|
43
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: modules/common_msgs/dreamview_msgs/hmi_config.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import enum_type_wrapper
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import message as _message
|
|
9
|
+
from google.protobuf import reflection as _reflection
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
# @@protoc_insertion_point(imports)
|
|
12
|
+
|
|
13
|
+
_sym_db = _symbol_database.Default()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n3modules/common_msgs/dreamview_msgs/hmi_config.proto\x12\x10\x61pollo.dreamview\"\xc0\x02\n\tHMIConfig\x12\x35\n\x05modes\x18\x01 \x03(\x0b\x32&.apollo.dreamview.HMIConfig.ModesEntry\x12\x33\n\x04maps\x18\x02 \x03(\x0b\x32%.apollo.dreamview.HMIConfig.MapsEntry\x12;\n\x08vehicles\x18\x03 \x03(\x0b\x32).apollo.dreamview.HMIConfig.VehiclesEntry\x1a,\n\nModesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a+\n\tMapsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a/\n\rVehiclesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"}\n\x0bVehicleData\x12:\n\ndata_files\x18\x01 \x03(\x0b\x32&.apollo.dreamview.VehicleData.DataFile\x1a\x32\n\x08\x44\x61taFile\x12\x13\n\x0bsource_path\x18\x01 \x01(\t\x12\x11\n\tdest_path\x18\x02 \x01(\t*\xb4\x04\n\tHMIAction\x12\x08\n\x04NONE\x10\x00\x12\x0e\n\nSETUP_MODE\x10\x01\x12\x0e\n\nRESET_MODE\x10\x02\x12\x13\n\x0f\x45NTER_AUTO_MODE\x10\x03\x12\r\n\tDISENGAGE\x10\x04\x12\x0f\n\x0b\x43HANGE_MODE\x10\x05\x12\x0e\n\nCHANGE_MAP\x10\x06\x12\x12\n\x0e\x43HANGE_VEHICLE\x10\x07\x12\x10\n\x0cSTART_MODULE\x10\x08\x12\x0f\n\x0bSTOP_MODULE\x10\t\x12\x13\n\x0f\x43HANGE_SCENARIO\x10\n\x12\x17\n\x13\x43HANGE_SCENARIO_SET\x10\x0b\x12\x12\n\x0eLOAD_SCENARIOS\x10\x0c\x12\x17\n\x13\x44\x45LETE_SCENARIO_SET\x10\r\x12\x17\n\x13LOAD_DYNAMIC_MODELS\x10\x0e\x12\x18\n\x14\x43HANGE_DYNAMIC_MODEL\x10\x0f\x12\x18\n\x14\x44\x45LETE_DYNAMIC_MODEL\x10\x10\x12\x11\n\rCHANGE_RECORD\x10\x11\x12\x11\n\rDELETE_RECORD\x10\x12\x12\x10\n\x0cLOAD_RECORDS\x10\x13\x12\x0f\n\x0bSTOP_RECORD\x10\x14\x12\x14\n\x10\x43HANGE_OPERATION\x10\x15\x12\x17\n\x13\x44\x45LETE_VEHICLE_CONF\x10\x16\x12\x13\n\x0f\x44\x45LETE_V2X_CONF\x10\x17\x12\x0e\n\nDELETE_MAP\x10\x18\x12\x14\n\x10LOAD_RTK_RECORDS\x10\x19\x12\x15\n\x11\x43HANGE_RTK_RECORD\x10\x1a\x12\x0f\n\x0bLOAD_RECORD\x10\x1b')
|
|
19
|
+
|
|
20
|
+
_HMIACTION = DESCRIPTOR.enum_types_by_name['HMIAction']
|
|
21
|
+
HMIAction = enum_type_wrapper.EnumTypeWrapper(_HMIACTION)
|
|
22
|
+
NONE = 0
|
|
23
|
+
SETUP_MODE = 1
|
|
24
|
+
RESET_MODE = 2
|
|
25
|
+
ENTER_AUTO_MODE = 3
|
|
26
|
+
DISENGAGE = 4
|
|
27
|
+
CHANGE_MODE = 5
|
|
28
|
+
CHANGE_MAP = 6
|
|
29
|
+
CHANGE_VEHICLE = 7
|
|
30
|
+
START_MODULE = 8
|
|
31
|
+
STOP_MODULE = 9
|
|
32
|
+
CHANGE_SCENARIO = 10
|
|
33
|
+
CHANGE_SCENARIO_SET = 11
|
|
34
|
+
LOAD_SCENARIOS = 12
|
|
35
|
+
DELETE_SCENARIO_SET = 13
|
|
36
|
+
LOAD_DYNAMIC_MODELS = 14
|
|
37
|
+
CHANGE_DYNAMIC_MODEL = 15
|
|
38
|
+
DELETE_DYNAMIC_MODEL = 16
|
|
39
|
+
CHANGE_RECORD = 17
|
|
40
|
+
DELETE_RECORD = 18
|
|
41
|
+
LOAD_RECORDS = 19
|
|
42
|
+
STOP_RECORD = 20
|
|
43
|
+
CHANGE_OPERATION = 21
|
|
44
|
+
DELETE_VEHICLE_CONF = 22
|
|
45
|
+
DELETE_V2X_CONF = 23
|
|
46
|
+
DELETE_MAP = 24
|
|
47
|
+
LOAD_RTK_RECORDS = 25
|
|
48
|
+
CHANGE_RTK_RECORD = 26
|
|
49
|
+
LOAD_RECORD = 27
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
_HMICONFIG = DESCRIPTOR.message_types_by_name['HMIConfig']
|
|
53
|
+
_HMICONFIG_MODESENTRY = _HMICONFIG.nested_types_by_name['ModesEntry']
|
|
54
|
+
_HMICONFIG_MAPSENTRY = _HMICONFIG.nested_types_by_name['MapsEntry']
|
|
55
|
+
_HMICONFIG_VEHICLESENTRY = _HMICONFIG.nested_types_by_name['VehiclesEntry']
|
|
56
|
+
_VEHICLEDATA = DESCRIPTOR.message_types_by_name['VehicleData']
|
|
57
|
+
_VEHICLEDATA_DATAFILE = _VEHICLEDATA.nested_types_by_name['DataFile']
|
|
58
|
+
HMIConfig = _reflection.GeneratedProtocolMessageType('HMIConfig', (_message.Message,), {
|
|
59
|
+
|
|
60
|
+
'ModesEntry' : _reflection.GeneratedProtocolMessageType('ModesEntry', (_message.Message,), {
|
|
61
|
+
'DESCRIPTOR' : _HMICONFIG_MODESENTRY,
|
|
62
|
+
'__module__' : 'modules.common_msgs.dreamview_msgs.hmi_config_pb2'
|
|
63
|
+
# @@protoc_insertion_point(class_scope:apollo.dreamview.HMIConfig.ModesEntry)
|
|
64
|
+
})
|
|
65
|
+
,
|
|
66
|
+
|
|
67
|
+
'MapsEntry' : _reflection.GeneratedProtocolMessageType('MapsEntry', (_message.Message,), {
|
|
68
|
+
'DESCRIPTOR' : _HMICONFIG_MAPSENTRY,
|
|
69
|
+
'__module__' : 'modules.common_msgs.dreamview_msgs.hmi_config_pb2'
|
|
70
|
+
# @@protoc_insertion_point(class_scope:apollo.dreamview.HMIConfig.MapsEntry)
|
|
71
|
+
})
|
|
72
|
+
,
|
|
73
|
+
|
|
74
|
+
'VehiclesEntry' : _reflection.GeneratedProtocolMessageType('VehiclesEntry', (_message.Message,), {
|
|
75
|
+
'DESCRIPTOR' : _HMICONFIG_VEHICLESENTRY,
|
|
76
|
+
'__module__' : 'modules.common_msgs.dreamview_msgs.hmi_config_pb2'
|
|
77
|
+
# @@protoc_insertion_point(class_scope:apollo.dreamview.HMIConfig.VehiclesEntry)
|
|
78
|
+
})
|
|
79
|
+
,
|
|
80
|
+
'DESCRIPTOR' : _HMICONFIG,
|
|
81
|
+
'__module__' : 'modules.common_msgs.dreamview_msgs.hmi_config_pb2'
|
|
82
|
+
# @@protoc_insertion_point(class_scope:apollo.dreamview.HMIConfig)
|
|
83
|
+
})
|
|
84
|
+
_sym_db.RegisterMessage(HMIConfig)
|
|
85
|
+
_sym_db.RegisterMessage(HMIConfig.ModesEntry)
|
|
86
|
+
_sym_db.RegisterMessage(HMIConfig.MapsEntry)
|
|
87
|
+
_sym_db.RegisterMessage(HMIConfig.VehiclesEntry)
|
|
88
|
+
|
|
89
|
+
VehicleData = _reflection.GeneratedProtocolMessageType('VehicleData', (_message.Message,), {
|
|
90
|
+
|
|
91
|
+
'DataFile' : _reflection.GeneratedProtocolMessageType('DataFile', (_message.Message,), {
|
|
92
|
+
'DESCRIPTOR' : _VEHICLEDATA_DATAFILE,
|
|
93
|
+
'__module__' : 'modules.common_msgs.dreamview_msgs.hmi_config_pb2'
|
|
94
|
+
# @@protoc_insertion_point(class_scope:apollo.dreamview.VehicleData.DataFile)
|
|
95
|
+
})
|
|
96
|
+
,
|
|
97
|
+
'DESCRIPTOR' : _VEHICLEDATA,
|
|
98
|
+
'__module__' : 'modules.common_msgs.dreamview_msgs.hmi_config_pb2'
|
|
99
|
+
# @@protoc_insertion_point(class_scope:apollo.dreamview.VehicleData)
|
|
100
|
+
})
|
|
101
|
+
_sym_db.RegisterMessage(VehicleData)
|
|
102
|
+
_sym_db.RegisterMessage(VehicleData.DataFile)
|
|
103
|
+
|
|
104
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
105
|
+
|
|
106
|
+
DESCRIPTOR._options = None
|
|
107
|
+
_HMICONFIG_MODESENTRY._options = None
|
|
108
|
+
_HMICONFIG_MODESENTRY._serialized_options = b'8\001'
|
|
109
|
+
_HMICONFIG_MAPSENTRY._options = None
|
|
110
|
+
_HMICONFIG_MAPSENTRY._serialized_options = b'8\001'
|
|
111
|
+
_HMICONFIG_VEHICLESENTRY._options = None
|
|
112
|
+
_HMICONFIG_VEHICLESENTRY._serialized_options = b'8\001'
|
|
113
|
+
_HMIACTION._serialized_start=524
|
|
114
|
+
_HMIACTION._serialized_end=1088
|
|
115
|
+
_HMICONFIG._serialized_start=74
|
|
116
|
+
_HMICONFIG._serialized_end=394
|
|
117
|
+
_HMICONFIG_MODESENTRY._serialized_start=256
|
|
118
|
+
_HMICONFIG_MODESENTRY._serialized_end=300
|
|
119
|
+
_HMICONFIG_MAPSENTRY._serialized_start=302
|
|
120
|
+
_HMICONFIG_MAPSENTRY._serialized_end=345
|
|
121
|
+
_HMICONFIG_VEHICLESENTRY._serialized_start=347
|
|
122
|
+
_HMICONFIG_VEHICLESENTRY._serialized_end=394
|
|
123
|
+
_VEHICLEDATA._serialized_start=396
|
|
124
|
+
_VEHICLEDATA._serialized_end=521
|
|
125
|
+
_VEHICLEDATA_DATAFILE._serialized_start=471
|
|
126
|
+
_VEHICLEDATA_DATAFILE._serialized_end=521
|
|
127
|
+
# @@protoc_insertion_point(module_scope)
|