Boboter
Loading...
Searching...
No Matches
delay.h
Go to the documentation of this file.
1
7
8#pragma once
9
10#include <esp_timer.h>
11#include <freertos/FreeRTOS.h>
12
16inline void delay(const uint16_t ms) {
17 vTaskDelay(pdMS_TO_TICKS(ms));
18}
void delay(const uint16_t ms)
Wrapper for vTaskDelay(pdMS_TO_TICKS(ms)).
Definition delay.h:16