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
5 changes: 3 additions & 2 deletions fsw/platform_inc/sch_platform_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,11 @@
** Dictates the maximum message ID that can be used in the Message Definition Table.
**
** \par Limits
** Must be less than or equal to #CFE_SB_HIGHEST_VALID_MSGID and greater than SCH_MDT_MIN_MSG_ID
** Must be less than or equal to #CFE_PLATFORM_SB_HIGHEST_VALID_MSGID and greater than
*SCH_MDT_MIN_MSG_ID
*/
#define SCH_MDT_MAX_MSG_ID CFE_SB_HIGHEST_VALID_MSGID

#define SCH_MDT_MAX_MSG_ID CFE_PLATFORM_SB_HIGHEST_VALID_MSGID

/**
** \schcfg Maximum Length, in Words, of a Message
Expand Down
2 changes: 1 addition & 1 deletion fsw/public_inc/sch_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void SCH_DisableProcessing(void);
**
**
******************************************************************************/
boolean SCH_GetProcessingState(void);
bool SCH_GetProcessingState(void);

#endif /* _sch_api_ */

Expand Down
2 changes: 1 addition & 1 deletion fsw/src/sch_apipriv.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ void SCH_DisableProcessing(void);
** None
**
*************************************************************************/
boolean SCH_GetProcessingState(void);
bool SCH_GetProcessingState(void);

#endif /* _sch_apipriv_ */

Expand Down
Loading