Apollo 10.0
自动驾驶开放平台
rtk.pb.txt
浏览该文件的文档.
1cyber_modules {
2 key: "Canbus"
3 value: {
4 dag_files: "modules/canbus/dag/canbus.dag"
5 }
6}
7cyber_modules {
8 key: "Control"
9 value: {
10 dag_files: "modules/control/control_component/dag/control.dag"
11 }
12}
13cyber_modules {
14 key: "GPS"
15 value: {
16 dag_files: "modules/drivers/gnss/dag/gnss.dag"
17 }
18}
19cyber_modules {
20 key: "Guardian"
21 value: {
22 dag_files: "modules/guardian/dag/guardian.dag"
23 }
24}
25cyber_modules {
26 key: "Localization"
27 value: {
28 dag_files: "modules/localization/dag/dag_streaming_rtk_localization.dag"
29 }
30}
31modules {
32 key: "RTK Recorder"
33 value: {
34 start_command: "nohup /apollo/scripts/rtk_recorder.sh start &"
35 stop_command: "/apollo/scripts/rtk_recorder.sh stop"
36 process_monitor_config {
37 command_keywords: "record_play/rtk_recorder"
38 }
39 # RTK Recorder is not running in self-driving mode.
40 required_for_safety: false
41 }
42}
43modules {
44 key: "RTK Player"
45 value: {
46 start_command: "nohup /apollo/scripts/rtk_player.sh start &"
47 stop_command: "/apollo/scripts/rtk_player.sh stop"
48 process_monitor_config {
49 command_keywords: "record_play/rtk_player"
50 }
51 }
52}
53modules {
54 key: "Data Recorder"
55 value: {
56 start_command: "/apollo/scripts/record_bag.py --start"
57 stop_command: "/apollo/scripts/record_bag.py --stop --stop_signal SIGINT"
58 process_monitor_config {
59 command_keywords: "cyber_recorder record"
60 }
61 }
62}
63monitored_components {
64 key: "Localization"
65 value: {
66 # Special LocalizationMonitor.
67 }
68}
69monitored_components {
70 key: "Data Recorder"
71 value: {
72 process {
73 command_keywords: "cyber_recorder record"
74 }
75 resource {
76 disk_spaces {
77 # For logs.
78 path: "data"
79 insufficient_space_warning: 8
80 insufficient_space_error: 2
81 }
82 disk_spaces {
83 # For records.
84 path: "/media/apollo/internal_nvme"
85 insufficient_space_warning: 128
86 insufficient_space_error: 32
87 }
88 }
89 }
90}