Closed
Description
Description
The cFS template incorrectly mentions a split
function that no longer exists.
It left over from a prior version of this application that expected the monitor handler to be called split
, but it should now be removed.
Type
- Bug: cFS backend generates application that contains missing function.
Additional context
None.
Requester
- Ivan Perez.
Method to check presence of bug
It can be found with the following search:
$ grep -nHre '\<split\>' --include='*.h' --include='*.c' ogma-core/templates/
ogma-core/templates/copilot-cfs/fsw/src/copilot_cfs.c:27:void split(void);
Expected result
The search above should be empty, showing that the function declaration has been completed removed.
Desired result
The search above should be empty, showing that the function declaration has been completed removed.
Proposed solution
Remove the declaration of the split
function from the cFS template.
Further notes
None.