When creating an Arduino deployment with the options shown in the .cookiecutterrc file shown below, there are several components in the Topology.cpp file that are missing a regCommands() call.
The output should ALSO include regCommand() calls for the following two components:
The LedBlinker component
The eePrmDb component
My suspicion is that there needs to be a tweak to the logic when you select "yes" for deployment_parameter_support to make sure these two components have their commands registered. The LedBlinker has no other commands but the set and save parameter commands, and the eePrmDb component would only be included if you selected yes for parameter support.
Here is a copy of the .cookiecutterrc file that I used:
When creating an Arduino deployment with the options shown in the
.cookiecutterrc
file shown below, there are several components in theTopology.cpp
file that are missing aregCommands()
call.The default output is this:
The output should ALSO include
regCommand()
calls for the following two components:LedBlinker
componenteePrmDb
componentMy suspicion is that there needs to be a tweak to the logic when you select "yes" for
deployment_parameter_support
to make sure these two components have their commands registered. The LedBlinker has no other commands but the set and save parameter commands, and the eePrmDb component would only be included if you selected yes for parameter support.Here is a copy of the
.cookiecutterrc
file that I used: