mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-06-25 18:01:33 +02:00
17 lines
184 B
C
17 lines
184 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void yield(void);
|
|
|
|
unsigned long micros();
|
|
void delayMicroseconds(uint32_t us);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|