Skip to content
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 #45, Remove 'return;' from last line of void functions. #46

Merged
merged 2 commits into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/dox_src/cfs_mm.dox
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
manipulations. That function is allocated to the CFS FM (File Manager) application.

MM is a command driven, single threaded application. It will pend indefinitely on the software bus
message queue until commands are recieved and then process them sequentially in the order they
message queue until commands are received and then process them sequentially in the order they
arrived. Memory Manager segments loads and dumps in order to prevent CPU hogging. Despite this,
careful consideration should be made when loading and dumping large amounts of memory. See
\ref cfsmmdg.
Expand Down
2 changes: 1 addition & 1 deletion fsw/src/mm_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ bool MM_PeekMem(const MM_PeekCmd_t *CmdPtr, cpuaddr SrcAddress)

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* Dump memory to file comand */
/* Dump memory to file command */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
bool MM_DumpMemToFileCmd(const CFE_SB_Buffer_t *BufPtr)
Expand Down