Initial commit for motor control sdk Fixes: PINDSW-5635 Signed-off-by: Naresh A <nareshk@ti.com>
25 lines
414 B
JavaScript
25 lines
414 B
JavaScript
|
|
let common = system.getScript("/common");
|
|
|
|
let system_module = {
|
|
displayName: "System",
|
|
|
|
moduleStatic: {
|
|
modules: function(inst) {
|
|
return [
|
|
{
|
|
name: "clock",
|
|
moduleName: "/kernel/dpl/clock",
|
|
},
|
|
{
|
|
name: "debug_log",
|
|
moduleName: "/kernel/dpl/debug_log",
|
|
},
|
|
]
|
|
},
|
|
},
|
|
};
|
|
|
|
exports = system_module;
|
|
|