Skip to content

Commit

Permalink
Fix #82, use separate dispatcher for messages
Browse files Browse the repository at this point in the history
Isolate the message verification and dispatch from the general message
processing.  Functions in the "cmds" file now strictly handle the
command content, and do not get involved in general validation.
  • Loading branch information
jphickey committed Apr 12, 2023
1 parent 4926ebd commit 171ff1c
Show file tree
Hide file tree
Showing 17 changed files with 1,272 additions and 1,433 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ set(APP_SRC_FILES
fsw/src/lc_custom.c
fsw/src/lc_app.c
fsw/src/lc_cmds.c
fsw/src/lc_dispatch.c
fsw/src/lc_watch.c
fsw/src/lc_action.c
fsw/src/lc_utils.c
Expand Down
1 change: 1 addition & 0 deletions fsw/src/lc_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include "lc_perfids.h"
#include "lc_version.h"
#include "lc_cmds.h"
#include "lc_dispatch.h"
#include "lc_action.h"
#include "lc_watch.h"
#include "lc_utils.h"
Expand Down
Loading

0 comments on commit 171ff1c

Please sign in to comment.