OVMS3-idf/examples/build_system/cmake/idf_as_lib/stubs/esp32/cpu_start.c
2019-05-14 18:01:14 +08:00

11 lines
No EOL
127 B
C

#include <stdbool.h>
#include <setjmp.h>
extern void app_main();
jmp_buf buf;
int main()
{
setjmp(buf);
app_main();
}