motor-control-sdk/source/.meta/soc/motor_control_am243x.syscfg.js

27 lines
432 B
JavaScript
Raw Normal View History

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