10 lines
154 B
C
10 lines
154 B
C
|
#include <stdio.h>
|
||
|
#include "esp_system.h"
|
||
|
|
||
|
void app_main(void)
|
||
|
{
|
||
|
printf("\n\n\nhello world and bye\n\n\n");
|
||
|
fflush(stdout);
|
||
|
esp_restart();
|
||
|
}
|