SolarEnergy/esp32_device/main/system.c

9 lines
102 B
C
Raw Normal View History

2024-07-27 14:15:35 +00:00
#include "system.h"
#include "esp_system.h"
void reboot()
{
fflush(stdout);
esp_restart();
}