motor-control-sdk/source/.meta/soc/motor_control_am243x.syscfg.js
Achala Ram 0a4b4cf5ef am64x/am243x: SDFM: add syscfg module
Fixes: PINDSW-7102

Signed-off-by: Achala Ram <a-ram@ti.com>
2023-12-21 16:45:06 +05:30

29 lines
488 B
JavaScript

let common = system.getScript("/common");
const topModules_main = [
"/position_sense/endat",
"/position_sense/hdsl",
"/position_sense/tamagawa",
"/position_sense/bissc",
"/current_sense/sdfm",
];
const topModules_mcu = [
];
exports = {
getTopModules: function() {
let topModules = topModules_main;
if(common.getSelfSysCfgCoreName().includes("m4f")) {
topModules = topModules_mcu;
}
return topModules;
},
};