Files
EmbeddedESP/main/components/util.h
2025-04-04 04:48:13 +02:00

9 lines
192 B
C

#ifndef UTIL_COMPONENT
#define UTIL_COMPONENT
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
void vTaskDelaySecUntil(TickType_t *previousWakeTime, const unsigned int sec);
#endif