Apollo 10.0
自动驾驶开放平台
mpc_module.dag
浏览该文件的文档.
1module_config {
2 module_library : "modules/control/libcontrol_component.so"
3
4 timer_components {
5 class_name : "ControlComponent"
6 config {
7 name: "control"
8 flag_file_path: "modules/control/conf/control.conf"
9 interval: 10
10 }
11 }
12
13 components {
14 class_name : "PreprocessorSubmodule"
15 config {
16 name: "PreprocessorSubmodule"
17 flag_file_path: "modules/control/conf/control.conf"
18 readers: [
19 {
20 channel:"/apollo/control/localview"
21 }
22 ]
23 }
24 }
25
26 components {
27 class_name : "MPCControllerSubmodule"
28 config {
29 name: "MPCControllerSubmodule"
30 flag_file_path: "modules/control/conf/control.conf"
31 readers: [
32 {
33 channel:"/apollo/control/preprocessor"
34 }
35 ]
36 }
37 }
38
39 components {
40 class_name : "PostprocessorSubmodule"
41 config {
42 name: "PostprocessorSubmodule"
43 flag_file_path: "modules/control/conf/control.conf"
44 readers: [
45 {
46 channel:"/apollo/control/controlcore"
47 }
48 ]
49 }
50 }
51}