Here's my platformio.ini file:
Code: Select all
[env:esp32dev]
platform = espressif32
board = esp32dev
lib_deps =
bblanchon/ArduinoJson@^6.18.3
rlogiacco/CircularBuffer@^1.3.3
lasselukkari/aWOT@^3.4.0
laurb9/StepperDriver@^1.3.1
arduino-libraries/NTPClient@^3.1.0
monitor_speed = 115200
build_type = debug
monitor_filters = esp32_exception_decoder
build_flags = -DCORE_DEBUG_LEVEL=5
Code: Select all
rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0018,len:4
load:0x3fff001c,len:1044
load:0x40078000,len:10124
load:0x40080400,len:5828
entry 0x400806a8
Guru Meditation Error: Core 0 panic'ed (LoadProhibited). Exception was unhandled.
Core 0 register dump:
PC : 0x400f90c6 PS : 0x00060130 A0 : 0x8008ab7e A1 : 0x3ffe3ac0
A2 : 0x3ffe3b9c A3 : 0x00000010 A4 : 0x3f4172c8 A5 : 0x3ffb7e3c
A6 : 0x00000000 A7 : 0x00000000 A8 : 0x800f90b2 A9 : 0x03ffe3b9
A10 : 0xfe713278 A11 : 0x00000001 A12 : 0x00000001 A13 : 0x00000000
A14 : 0x00000000 A15 : 0x00000000 SAR : 0x00000017 EXCCAUSE: 0x0000001c
EXCVADDR: 0x800f90d6 LBEG : 0x4000c2e0 LEND : 0x4000c2f6 LCOUNT : 0xffffffff
ELF file SHA256: 0000000000000000
Backtrace: 0x400f90c6:0x3ffe3ac0 0x4008ab7b:0x3ffe3b80 0x400846a1:0x3ffe3bd0 0x40084830:0x3ffe3c20 0x40079247:0x3ffe3c40 0x400792ad:0x3ffe3c70 0x400792b8:0x3ffe3ca0 0x40079465:0x3ffe3cc0 0x400806da:0x3ffe3df0 0x40007c15:0x3ffe3eb0 0x4000073d:0x3ffe3f20
#0 0x400f90c6:0x3ffe3ac0 in snprintf at /Users/ivan/e/newlib_xtensa-2.2.0-bin/newlib_xtensa-2.2.0/xtensa-esp32-elf/newlib/libc/stdio/../../../.././newlib/libc/stdio/snprintf.c:108
#1 0x4008ab7b:0x3ffe3b80 in vTaskStartScheduler at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/freertos/tasks.c:3507
#2 0x400846a1:0x3ffe3bd0 in start_cpu0_default at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/esp32/cpu_start.c:460
#3 0x40084830:0x3ffe3c20 in call_start_cpu0 at /home/runner/work/esp32-arduino-lib-builder/esp32-arduino-lib-builder/esp-idf/components/esp32/cpu_start.c:262
#4 0x40079247:0x3ffe3c40 in ?? ??:0
#5 0x400792ad:0x3ffe3c70 in ?? ??:0
#6 0x400792b8:0x3ffe3ca0 in ?? ??:0
#7 0x40079465:0x3ffe3cc0 in ?? ??:0
#8 0x400806da:0x3ffe3df0 in ?? ??:0
#9 0x40007c15:0x3ffe3eb0 in ?? ??:0
#10 0x4000073d:0x3ffe3f20 in ?? ??:0
I have managed to run basic sketches on the board.
Any help would be appreciated.