2024-07-27 14:15:35 +00:00
|
|
|
/**
|
|
|
|
* System functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-08-17 15:19:47 +00:00
|
|
|
#include "stddef.h"
|
|
|
|
|
2024-07-27 14:15:35 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2024-08-17 15:19:47 +00:00
|
|
|
/**
|
|
|
|
* Sleep for a given amount of time
|
|
|
|
*/
|
|
|
|
void system_sleep(size_t secs);
|
|
|
|
|
2024-07-27 14:15:35 +00:00
|
|
|
/**
|
|
|
|
* Reboot ESP32
|
|
|
|
*/
|
|
|
|
void reboot();
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|