-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #181, Add test start command script for cmdUtil
- Loading branch information
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# es-delete-app.sh : This script will call the cmdUtil program with a command packet to the | ||
# ES cFE application. It will tell ES to delete the TO App. It is defaulting to the localhost. | ||
# ES cFE application. It will tell ES to delete the named. It is defaulting to the localhost. | ||
./cmdUtil --pktid=0x1806 --cmdcode=5 --string="20:ES_APP" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Command to start the test application | ||
# CFE_ES_START_APP_CC = 4 | ||
# | ||
# typedef struct CFE_ES_StartAppCmd_Payload | ||
# { | ||
# char Application[CFE_MISSION_MAX_API_LEN]; //CFE_MISSION_MAX_API_LEN = 20 | ||
# char AppEntryPoint[CFE_MISSION_MAX_API_LEN]; | ||
# char AppFileName[CFE_MISSION_MAX_PATH_LEN]; //CFE_MISSION_MAX_PATH_LEN = 64 | ||
# CFE_ES_MemOffset_t StackSize; //uint32 | ||
# CFE_ES_ExceptionAction_Enum_t ExceptionAction; //uint8 | ||
# undocumented SPARE uint8 | ||
# CFE_ES_TaskPriority_Atom_t Priority; //uint16 | ||
# } CFE_ES_StartAppCmd_Payload_t; | ||
|
||
./cmdUtil --pktid=0x1806 --cmdcode=4 --endian=LE --string="20:CFE_TEST_APP" --string="20:CFE_TestMain" \ | ||
--string="64:cfe_testcase" --uint32=16384 --uint8=0 --uint8=0 --uint16=100 |