16 lines
199 B
C
16 lines
199 B
C
#include "esp_system.h"
|
|
#include "go.h"
|
|
|
|
|
|
int app_main(void)
|
|
{
|
|
setup();
|
|
while(1) {
|
|
loop();
|
|
}
|
|
|
|
printf("Restarting now.\n");
|
|
fflush(stdout);
|
|
esp_restart();
|
|
}
|
|
|