Use this forum to chat about hardware specific topics for the ESP8266 (peripherals, memory, clocks, JTAG, programming)

User avatar
By btidey
#81859 My understanding is that the internal system ROM in the chip is located at 40000000 and this contains basic system functions.

If you have sdk then there is a file called eagle.rom.addr.v6.ld which lists all the functions in there.

Of significant interest is that provides uart and download routines to program the external flash. It reads the 3 GPIO boot mode pins and determines what to execute on reset.
User avatar
By sfranzyshen
#81908
btidey wrote:My understanding is that the internal system ROM in the chip is located at 40000000 and this contains basic system functions.

If you have sdk then there is a file called eagle.rom.addr.v6.ld which lists all the functions in there.

Of significant interest is that provides uart and download routines to program the external flash. It reads the 3 GPIO boot mode pins and determines what to execute on reset.


Perfect ... Thanks for the timely response