Skip to content

Commit

Permalink
HOTFIX: Deprecated time format verify logic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Aug 24, 2020
1 parent faebfc1 commit 582ea3b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions fsw/cfe-core/src/sb/cfe_sb_verify.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,11 @@
#error CFE_PLATFORM_SB_BUF_MEMORY_BYTES cannot be greater than UINT32_MAX (4 Gigabytes)!
#endif

#if ((CFE_MISSION_SB_PACKET_TIME_FORMAT == CFE_MISSION_SB_TIME_32_32_SUBS) || \
(CFE_MISSION_SB_PACKET_TIME_FORMAT == CFE_MISSION_SB_TIME_32_32_M_20))
/*
* Legacy time formats no longer supported in core cFE, this will pass
* if default is selected or if both defines are removed
*/
#if (CFE_MISSION_SB_PACKET_TIME_FORMAT != CFE_MISSION_SB_TIME_32_16_SUBS)
#error Legacy CFE_MISSION_SB_PACKET_TIME_FORMAT implementations no longer supported in core
#endif

Expand Down

0 comments on commit 582ea3b

Please sign in to comment.