This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
XF/src/simplified/xf/port/idf-stm32/eventqueue.cpp

18 lines
363 B
C++
Raw Normal View History

2023-09-19 15:59:49 +02:00
#include <config/xf-config.h>
#if (USE_XF_IDF_STM32_EVENT_QUEUE_CLASS != 0)
#include <cassert>
#include "eventqueue.h"
// TODO: Implement code for XFEventQueue class
bool XFEventQueue::pend()
{
// Method cannot be used in an IDF! Waiting within
// this method would block the whole XF
return false;
}
#endif // USE_XF_IDF_STM32_EVENT_QUEUE_CLASS