Page 1 of 1

Using C as programming language for ESP32

Posted: Fri Dec 02, 2016 1:51 pm
by PBonifacio
Hello guys,

Have anyone find a way to program the ESP32 using C? Like a PIC, STM, ATMEL chip?

I know that are other ways for programing it, using APIs that make it easy; but in my opinion, in C I can have more control of the harware and what is going on with it.

Thanks!

Re: Using C as programming language for ESP32

Posted: Fri Dec 02, 2016 2:52 pm
by ESP_igrr
Sure, ESP-IDF framework allows you to write programs in C. There are a few differences imposed by the framework, such as that the entry point of your application is called 'app_main' and not 'main'. Aside from that, you have all of the C99 in your disposal.