Update .non_used_index_space = UINT16_MAX - (2*_depth-1) in osal_none.h

This commit is contained in:
Reinhard Panhuber 2021-02-18 21:22:11 +01:00
parent 8904874f76
commit fff6283bf7
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ typedef osal_queue_def_t* osal_queue_t;
.item_size = sizeof(_type), \
.overwritable = false, \
.max_pointer_idx = (2*(_depth))-1, \
.non_used_index_space = 0xFFFF-((2*(_depth))-1),\
.non_used_index_space = UINT16_MAX - (2*_depth-1),\
}\
}