9 lines
102 B
C
9 lines
102 B
C
|
#include "system.h"
|
||
|
|
||
|
#include "esp_system.h"
|
||
|
|
||
|
void reboot()
|
||
|
{
|
||
|
fflush(stdout);
|
||
|
esp_restart();
|
||
|
}
|