-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #15, use CFE_MSG_PTR macro #91
Conversation
@@ -1000,7 +1000,7 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
void FM_ChildDeleteDirCmd(const FM_ChildQueueEntry_t *CmdArgs) | |||
void FM_ChildDeleteDirectoryCmd(const FM_ChildQueueEntry_t *CmdArgs) |
Check notice
Code scanning / CodeQL-coding-standard
Function too long
@@ -625,7 +625,7 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
void FM_ChildConcatCmd(const FM_ChildQueueEntry_t *CmdArgs) | |||
void FM_ChildConcatFilesCmd(const FM_ChildQueueEntry_t *CmdArgs) |
Check notice
Code scanning / CodeQL-coding-standard
Function too long
@@ -434,7 +434,7 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
void FM_ChildDeleteAllCmd(FM_ChildQueueEntry_t *CmdArgs) | |||
void FM_ChildDeleteAllFilesCmd(FM_ChildQueueEntry_t *CmdArgs) |
Check notice
Code scanning / CodeQL-coding-standard
Function too long
@@ -387,14 +387,14 @@ | |||
/* FM application -- housekeeping request packet processor */ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
void FM_ReportHK(const CFE_MSG_CommandHeader_t *Msg) | |||
void FM_SendHkCmd(const CFE_SB_Buffer_t *BufPtr) |
Check notice
Code scanning / CodeQL-coding-standard
Long function without assertion
@@ -1000,7 +1000,7 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
void FM_ChildDeleteDirCmd(const FM_ChildQueueEntry_t *CmdArgs) | |||
void FM_ChildDeleteDirectoryCmd(const FM_ChildQueueEntry_t *CmdArgs) |
Check notice
Code scanning / CodeQL-coding-standard
Long function without assertion
@@ -961,7 +961,7 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
void FM_ChildCreateDirCmd(const FM_ChildQueueEntry_t *CmdArgs) | |||
void FM_ChildCreateDirectoryCmd(const FM_ChildQueueEntry_t *CmdArgs) |
Check notice
Code scanning / CodeQL-coding-standard
Long function without assertion
@@ -625,7 +625,7 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
void FM_ChildConcatCmd(const FM_ChildQueueEntry_t *CmdArgs) | |||
void FM_ChildConcatFilesCmd(const FM_ChildQueueEntry_t *CmdArgs) |
Check notice
Code scanning / CodeQL-coding-standard
Long function without assertion
@@ -585,7 +585,7 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
void FM_ChildDecompressCmd(const FM_ChildQueueEntry_t *CmdArgs) | |||
void FM_ChildDecompressFileCmd(const FM_ChildQueueEntry_t *CmdArgs) |
Check notice
Code scanning / CodeQL-coding-standard
Long function without assertion
@@ -434,7 +434,7 @@ | |||
/* */ | |||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | |||
|
|||
void FM_ChildDeleteAllCmd(FM_ChildQueueEntry_t *CmdArgs) | |||
void FM_ChildDeleteAllFilesCmd(FM_ChildQueueEntry_t *CmdArgs) |
Check notice
Code scanning / CodeQL-coding-standard
Long function without assertion
This requires headers to be named correctly per CFE_MSG definitions. Includes other remaining cleanup items. This renames command code macro names and command structure names so that they all match.
5039f7c
to
268140a
Compare
Checklist (Please check before submitting)
Describe the contribution
Use of CFE_MSG_PTR requires objects and members to be named correctly per CFE_MSG definitions. Includes other remaining cleanup items. Mainly:
Fixes #15
Testing performed
Build and run all tests
Expected behavior changes
No impact to behavior. More future proof code.
System(s) tested on
Debian
Contributor Info - All information REQUIRED for consideration of pull request
Joseph Hickey, Vantage Systems, Inc.