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 #1394, Remove shell file subtype and clarify scope #1575

Merged
merged 1 commit into from
May 27, 2021
Merged
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
16 changes: 6 additions & 10 deletions modules/core_api/fsw/inc/cfe_fs_extern_typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,12 @@
#define CFE_FS_FILE_CONTENT_ID 0x63464531 /**< \brief Magic Number for cFE compliant files (= 'cFE1') */

/**
* @brief Label definitions associated with CFE_FS_SubType_Enum_t
* @brief File subtypes used within cFE
*
* This defines all the file subtypes used by cFE.
* Note apps can extend as needed but need to
* avoid conflicts (app context not currently included
* in the file header).
*/
enum CFE_FS_SubType
{
Expand Down Expand Up @@ -98,15 +103,6 @@ enum CFE_FS_SubType
*/
CFE_FS_SubType_ES_PERFDATA = 4,

/**
* @brief Executive Services Shell Response File
*
* Executive Services Shell Response Data File which is generated in response to a
* shell command.
*
*/
CFE_FS_SubType_ES_SHELL = 5,

/**
* @brief Executive Services Critical Data Store Registry Dump File
*
Expand Down