- 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>
28 lines
461 B
JavaScript
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;
|
|
},
|
|
};
|