-->
Page 1 of 1

ESP8266 Firmware calls.

PostPosted: Fri Sep 23, 2016 10:07 am
by cwr
The Arduino software has a number of symbols defined by GCC's PROVIDE keyword,
eg: PROVIDE ( ets_post = 0x40000e24 ) where the ets_post function is then
called with ets_post(LOOP_TASK_PRIORITY, 0, 0).

Can anyone confirm that these addresses are in the ESP8266 firmware, rather
than the Arduino shim, and does anyone know of any documentation covering
the ESP8266 firmware calls? (Apart from their names in the Arduino software.)

Thanks - Will

Re: ESP8266 Firmware calls.

PostPosted: Sat Sep 24, 2016 4:13 am
by Me-no-dev
All provides are for ROM functions (build in the chip itself). Definitions for some of them you will find in the tools/sdk folder of the Arduino env for ESP8266

Re: ESP8266 Firmware calls.

PostPosted: Sat Sep 24, 2016 5:52 am
by cwr
Many thanks - that makes things much easier.

Will