motor-control-sdk/source/.meta/soc/motor_control_am243x.syscfg.js
Dhaval Khandla 2c4dd5bfc0 am243x: bissc: Add examples, driver and firmwares
- Add support for single channel
- Add support for multi channel using single PRU
- Add support for multi channel using multiple PRUs with load share mode

Fixes: PINDSW-5468, PINDSW-5479, PINDSW-5488, PINDSW-5494, PINDSW-5495

Signed-off-by: Dhaval Khandla <dhavaljk@ti.com>
2023-12-04 15:54:58 +05:30

28 lines
461 B
JavaScript

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