diff --git a/cmake/sample_defs/cpu1_platform_cfg.h b/cmake/sample_defs/cpu1_platform_cfg.h index 05097082c..7e434f100 100644 --- a/cmake/sample_defs/cpu1_platform_cfg.h +++ b/cmake/sample_defs/cpu1_platform_cfg.h @@ -887,7 +887,7 @@ ** reconstructed by the ground system. ** ** \par Limits -** There is a lower limit of 32 and an upper limit of #CFE_SB_MAX_SB_MSG_SIZE. +** There is a lower limit of 32 and an upper limit of #CFE_MISSION_SB_MAX_SB_MSG_SIZE. */ #define CFE_PLATFORM_ES_MAX_SHELL_PKT 64 diff --git a/docs/cFE Application Developers Guide.md b/docs/cFE Application Developers Guide.md index 3b34e230b..32f05ebfb 100644 --- a/docs/cFE Application Developers Guide.md +++ b/docs/cFE Application Developers Guide.md @@ -1121,14 +1121,14 @@ TypeCRC identifies which of the standard CRC polynomials to be used. Currently, there are the following types available: ``` -CFE_ES_CRC_8 – an 8-bit additive checksum calculation that returns a 32-bit value -CFE_ES_CRC_16 – a 16-bit additive checksum calculation that returns a 32-bit value -CFE_ES_CRC_32 – a 32-bit additive checksum calculation that returns a 32-bit value -CFE_ES_DEFAULT_CRC – the mission specified default CRC calculation +CFE_MISSION_ES_CRC_8 – an 8-bit additive checksum calculation that returns a 32-bit value +CFE_MISSION_ES_CRC_16 – a 16-bit additive checksum calculation that returns a 32-bit value +CFE_MISSION_ES_CRC_32 – a 32-bit additive checksum calculation that returns a 32-bit value +CFE_MISSION_ES_DEFAULT_CRC – the mission specified default CRC calculation ``` Unless there is a specific interface with a specified CRC calculation, -Applications must use the CFE_ES_DEFAULT_CRC type. +Applications must use the CFE_MISSION_ES_DEFAULT_CRC type. #### 5.11 File System Functions @@ -1215,7 +1215,7 @@ FILE: xx_app.c void XX_AppMain(void) { - uint32 RunStatus = CFE_ES_APP_RUN; + uint32 RunStatus = CFE_ES_RunStatus_APP_RUN; CFE_SB_MsgPtr_t MsgPtr; int32 Result = CFE_SUCCESS; @@ -1238,7 +1238,7 @@ void XX_AppMain(void) */ if (Result != CFE_SUCCESS) { - RunStatus = CFE_ES_APP_ERROR; + RunStatus = CFE_ES_RunStatus_APP_ERROR; } /* @@ -1262,7 +1262,7 @@ void XX_AppMain(void) } else { - RunStatus = CFE_ES_APP_ERROR; + RunStatus = CFE_ES_RunStatus_APP_ERROR; } } diff --git a/docs/src/cfe_api.dox b/docs/src/cfe_api.dox index 7a5113cb7..000e7c982 100644 --- a/docs/src/cfe_api.dox +++ b/docs/src/cfe_api.dox @@ -106,12 +106,6 @@
  • #CFE_FS_WriteHeader - \copybrief CFE_FS_WriteHeader
  • #CFE_FS_SetTimestamp - \copybrief CFE_FS_SetTimestamp -
  • \ref CFEAPIFSCompress -
  • \ref CFEAPIFSUtil
  • \ref CFEAPISBChecksum @@ -247,8 +240,6 @@
  • #CFE_TIME_MET2SCTime - \copybrief CFE_TIME_MET2SCTime
  • #CFE_TIME_Sub2MicroSecs - \copybrief CFE_TIME_Sub2MicroSecs
  • #CFE_TIME_Micro2SubSecs - \copybrief CFE_TIME_Micro2SubSecs -
  • #CFE_TIME_CFE2FSSeconds - \copybrief CFE_TIME_CFE2FSSeconds -
  • #CFE_TIME_FS2CFESeconds - \copybrief CFE_TIME_FS2CFESeconds
  • \ref CFEAPITIMEExternSource