esp-idf/examples/get-started
Ivan Grokhotkov 0d5ec69adc tests: gdb_loadable_elf: adjust the breakpoint location for ESP32 ECO3
The previous location was the return from the first ets_printf call
that prints ROM sign-on message. Since the main function was patched
in ECO3, the new address no longer works — there is no instruction at
0x40007901 in ECO3 ROM. This could be solved by setting two
breakpoints (one would work for ECO <=2, the other for ECO3), but we
would need to remove the unused breakpoint later.
Fix this by setting the breakpoint at ets_printf. This means that when
debugging a loadable ELF the ROM sign-on message will no longer be
shown, but this doesn't seem to be an issue.
2021-06-18 15:10:06 +02:00
..
blink test: update example and unit tests with new import roles: 2019-12-07 10:34:54 +08:00
hello_world tests: gdb_loadable_elf: adjust the breakpoint location for ESP32 ECO3 2021-06-18 15:10:06 +02:00
README.md Replace all DOS line endings with Unix 2018-07-12 19:10:37 +08:00

Get Started Examples

Simple code to get started with ESP32 and ESP-IDF.

See the README.md file in the upper level examples directory for more information about examples.