OVMS3-idf/examples/build_system/cmake/idf_as_lib/stubs/freertos/task.c

7 lines
125 B
C
Raw Normal View History

#include <unistd.h>
#include "freertos/task.h"
void vTaskDelay( const uint32_t xTicksToDelay )
{
sleep(xTicksToDelay);
}