diff --git a/cmake/cfe-usersguide.doxyfile.in b/cmake/cfe-usersguide.doxyfile.in index 02860dc01..9cd8872f8 100644 --- a/cmake/cfe-usersguide.doxyfile.in +++ b/cmake/cfe-usersguide.doxyfile.in @@ -23,6 +23,4 @@ INPUT += @MISSION_SOURCE_DIR@/cfe/docs/src/cfe_usersguide.dox PREDEFINED += @USERGUIDE_PREDEFINED@ # Bring in the cFE header files for the documentation of the various API calls -INPUT += \ -@MISSION_USERGUIDE_HEADERFILES@ \ -@USERGUIDE_MISC_ADDITION@ \ No newline at end of file +INPUT += @MISSION_USERGUIDE_HEADERFILES@ diff --git a/cmake/mission_build.cmake b/cmake/mission_build.cmake index a362647ab..5b767e74e 100644 --- a/cmake/mission_build.cmake +++ b/cmake/mission_build.cmake @@ -232,14 +232,6 @@ function(prepare) "${osal_MISSION_DIR}/src/os/inc/*.h") string(REPLACE ";" " \\\n" MISSION_OSAL_HEADERFILES "${MISSION_OSAL_HEADERFILES}") - # Addition to usersguide - file(GLOB USERGUIDE_MISC_ADDITION - "${cfe-core_MISSION_DIR}/src/inc/private/*.h" - "${cfe-core_MISSION_DIR}/src/sb/*" - "${cfe-core_MISSION_DIR}/src/es/*" - "${cfe-core_MISSION_DIR}/src/evs/*") - string(REPLACE ";" " \\\n" USERGUIDE_MISC_ADDITION "${USERGUIDE_MISC_ADDITION}") - # PREDEFINED set(USERGUIDE_PREDEFINED "MESSAGE_FORMAT_IS_CCSDS") diff --git a/fsw/cfe-core/src/inc/cfe_es.h b/fsw/cfe-core/src/inc/cfe_es.h index 777af1901..e7f357a37 100644 --- a/fsw/cfe-core/src/inc/cfe_es.h +++ b/fsw/cfe-core/src/inc/cfe_es.h @@ -561,9 +561,9 @@ bool CFE_ES_RunLoop(uint32 *ExitStatus); ** \param[in] MinSystemState Determine the state of the App ** ** \returns -** CFE_SUCCESS if state was successfully achieved -** CFE_ES_OPERATION_TIMED_OUT if the timeout was reached -** (or other defined error code in case of error) +** \retcode #CFE_SUCCESS \retdesc State successfully achieved \endcode +** \retcode #CFE_ES_OPERATION_TIMED_OUT \retdesc Timeout was reached \endcode +** \endreturns ** ** \sa #CFE_ES_RunLoop ** @@ -969,7 +969,6 @@ int32 CFE_ES_WriteToSysLog(const char *SpecStringPtr, ...) OS_PRINTF(1,2); ** a single value. Nominally, the user should set this value to zero. ** ** \param[in] TypeCRC One of the following CRC algorithm selections: -** ** \arg \c CFE_MISSION_ES_CRC_8 - (Not currently implemented) ** \arg \c CFE_MISSION_ES_CRC_16 - a CRC-16 algorithm ** \arg \c CFE_MISSION_ES_CRC_32 - (not currently implemented)