2023-07-04 15:32:46 +03:00
|
|
|
|
|
|
|
|
let common = system.getScript("/common");
|
|
|
|
|
|
|
|
|
|
const topModules_main = [
|
2023-07-13 12:53:20 +03:00
|
|
|
"/position_sense/endat",
|
|
|
|
|
"/position_sense/hdsl",
|
|
|
|
|
"/position_sense/tamagawa",
|
2023-12-01 09:30:39 +03:00
|
|
|
"/position_sense/bissc",
|
2023-12-21 12:22:38 +03:00
|
|
|
"/current_sense/sdfm",
|
2023-12-21 13:43:33 +03:00
|
|
|
"/pru_icssg/pwm",
|
2023-07-04 15:32:46 +03:00
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const topModules_mcu = [
|
|
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
exports = {
|
|
|
|
|
getTopModules: function() {
|
|
|
|
|
|
|
|
|
|
let topModules = topModules_main;
|
|
|
|
|
|
|
|
|
|
if(common.getSelfSysCfgCoreName().includes("m4f")) {
|
|
|
|
|
topModules = topModules_mcu;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return topModules;
|
|
|
|
|
},
|
|
|
|
|
};
|