- 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>
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,
|
|
};
|