File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 48
48
#endif
49
49
50
50
#if CFE_PLATFORM_ES_ER_LOG_ENTRIES < 1
51
- #error CFE_PLATFORM_ES_ER_LOG_ENTRIES cannot be less than 10 !
51
+ #error CFE_PLATFORM_ES_ER_LOG_ENTRIES cannot be less than 1 !
52
52
#endif
53
53
54
54
#if CFE_PLATFORM_ES_SYSTEM_LOG_SIZE < 512
160
160
** Alignment of ES memory pool
161
161
*/
162
162
#if CFE_PLATFORM_ES_MEMPOOL_ALIGN_SIZE_MIN <= 0
163
- #error CFE_PLATFORM_ES_MEMPOOL_ALIGN_SIZE_MIN cannot be 0!
163
+ #error CFE_PLATFORM_ES_MEMPOOL_ALIGN_SIZE_MIN cannot be less than or equal to 0!
164
164
#elif (CFE_PLATFORM_ES_MEMPOOL_ALIGN_SIZE_MIN & (CFE_PLATFORM_ES_MEMPOOL_ALIGN_SIZE_MIN - 1 )) != 0
165
165
#error CFE_PLATFORM_ES_MEMPOOL_ALIGN_SIZE_MIN must be a power of 2!
166
166
#endif
169
169
** Intermediate ES Memory Pool Block Sizes
170
170
*/
171
171
#if CFE_PLATFORM_ES_MAX_BLOCK_SIZE < CFE_MISSION_SB_MAX_SB_MSG_SIZE
172
- #error CFE_PLATFORM_ES_MAX_BLOCK_SIZE must be larger than CFE_MISSION_SB_MAX_SB_MSG_SIZE!
172
+ #error CFE_PLATFORM_ES_MAX_BLOCK_SIZE must be equal to or larger than CFE_MISSION_SB_MAX_SB_MSG_SIZE!
173
173
#endif
174
174
175
175
#if CFE_PLATFORM_ES_MAX_BLOCK_SIZE < CFE_PLATFORM_TBL_MAX_SNGL_TABLE_SIZE
176
- #error CFE_PLATFORM_ES_MAX_BLOCK_SIZE must be larger than CFE_PLATFORM_TBL_MAX_SNGL_TABLE_SIZE!
176
+ #error CFE_PLATFORM_ES_MAX_BLOCK_SIZE must be equal to or larger than CFE_PLATFORM_TBL_MAX_SNGL_TABLE_SIZE!
177
177
#endif
178
178
179
179
#if CFE_PLATFORM_ES_MAX_BLOCK_SIZE < CFE_PLATFORM_TBL_MAX_DBL_TABLE_SIZE
180
- #error CFE_PLATFORM_ES_MAX_BLOCK_SIZE must be larger than CFE_PLATFORM_TBL_MAX_DBL_TABLE_SIZE!
180
+ #error CFE_PLATFORM_ES_MAX_BLOCK_SIZE must be equal to or larger than CFE_PLATFORM_TBL_MAX_DBL_TABLE_SIZE!
181
181
#endif
182
182
183
183
#if CFE_PLATFORM_ES_MEM_BLOCK_SIZE_01 > CFE_PLATFORM_ES_MEM_BLOCK_SIZE_02
You can’t perform that action at this time.
0 commit comments