SolarEnergy/esp32_device/main/system.c
2024-07-27 16:15:35 +02:00

9 lines
102 B
C

#include "system.h"
#include "esp_system.h"
void reboot()
{
fflush(stdout);
esp_restart();
}