Initial commit for motor control sdk Fixes: PINDSW-5635 Signed-off-by: Naresh A <nareshk@ti.com>
15 lines
337 B
JavaScript
15 lines
337 B
JavaScript
function getComponentProperty(device)
|
|
{
|
|
return require(`./project_${device}`).getComponentProperty();
|
|
};
|
|
|
|
function getComponentBuildProperty(buildOption)
|
|
{
|
|
return require(`./project_${buildOption.device}`).getComponentBuildProperty(buildOption);
|
|
};
|
|
|
|
module.exports = {
|
|
getComponentProperty,
|
|
getComponentBuildProperty,
|
|
};
|