Skip to content
Open
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set(APP_SRC_FILES
fsw/src/cf_chunk.c
fsw/src/cf_clist.c
fsw/src/cf_codec.c
fsw/src/cf_cmd.c
fsw/src/cf_cmds.c
fsw/src/cf_crc.c
fsw/src/cf_timer.c
fsw/src/cf_utils.c
Expand Down
74 changes: 37 additions & 37 deletions fsw/src/cf_cmd.c → fsw/src/cf_cmds.c

Large diffs are not rendered by default.

File renamed without changes.
4 changes: 2 additions & 2 deletions fsw/src/cf_dispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
#include "cf_dispatch.h"
#include "cf_app.h"
#include "cf_events.h"
#include "cf_cmd.h"
#include "cf_cmds.h"

#include "cfe.h"
#include <string.h>

/*----------------------------------------------------------------
*
* Application-scope internal function
* See description in cf_cmd.h for argument/return detail
* See description in cf_cmds.h for argument/return detail
*
*-----------------------------------------------------------------*/
void CF_ProcessGroundCommand(const CFE_SB_Buffer_t *BufPtr)
Expand Down
2 changes: 1 addition & 1 deletion fsw/src/cf_eds_dispatch.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "cf_app.h"
#include "cf_events.h"
#include "cf_dispatch.h"
#include "cf_cmd.h"
#include "cf_cmds.h"

#include "cf_eds_dictionary.h"
#include "cf_eds_dispatcher.h"
Expand Down
2 changes: 1 addition & 1 deletion unit-test/cf_app_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "cf_events.h"
#include "cf_dispatch.h"
#include "cf_app.h"
#include "cf_cmd.h"
#include "cf_cmds.h"

/*******************************************************************************
**
Expand Down
288 changes: 144 additions & 144 deletions unit-test/cf_cmd_tests.c → unit-test/cf_cmds_tests.c

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion unit-test/cf_dispatch_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/* cf testing includes */
#include "cf_test_utils.h"
#include "cf_dispatch.h"
#include "cf_cmd.h"
#include "cf_cmds.h"
#include "cf_msgids.h"
#include "cf_events.h"

Expand Down
2 changes: 1 addition & 1 deletion unit-test/cf_eds_dispatch_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "cf_test_utils.h"
#include "cf_dispatch.h"
#include "cf_eds_dispatcher.h"
#include "cf_cmd.h"
#include "cf_cmds.h"
#include "cf_msgids.h"
#include "cf_events.h"

Expand Down
2 changes: 1 addition & 1 deletion unit-test/stubs/cf_cmd_stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Auto-Generated stub implementations for functions defined in cf_cmd header
*/

#include "cf_cmd.h"
#include "cf_cmds.h"
#include "utgenstub.h"

/*
Expand Down
Loading