Small bugfix for rtos queue

This commit is contained in:
dario 2024-02-07 18:49:49 +01:00
parent 4f13387692
commit c1ee6464df

View File

@ -19,7 +19,7 @@ namespace sta
RtosQueue<T>::RtosQueue(osMessageQueueId_t handle) RtosQueue<T>::RtosQueue(osMessageQueueId_t handle)
: handle_{handle} : handle_{handle}
{ {
STA_ASSERT(handle != nullptr); STA_ASSERT(handle != NULL);
} }
template <typename T> template <typename T>