10 lines
154 B
C
Executable File
10 lines
154 B
C
Executable File
#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();
|
|
}
|