I have troubles trying to run this example
https://github.com/badlogic/mcugdx/tree ... les%2Fdoom
My board is an esp32s3-wroom-1devkit with 16MB flash and 8MB PSRAM. It has 2 usb c ports.
It builds and loads in esp idf but the main function doesn't start. No log printf, or even led blink from the top of main is called, neither the tft display itself starts showing frames.
This is the only output i get
Code: Select all
mihaistoica@mmbp doom % '/Users/mihaistoica/.espressif/python_env/idf5.5_py3.13_env/bin/python' '
/Users/mihaistoica/esp/v5.5.1/esp-idf/tools/idf_monitor.py' -p /dev/tty.usbmodem1101 -b 115200 --
toolchain-prefix xtensa-esp32s3-elf- --make ''/Users/mihaistoica/.espressif/python_env/idf5.5_py3
.13_env/bin/python' '/Users/mihaistoica/esp/v5.5.1/esp-idf/tools/idf.py'' --target esp32s3 '/User
s/mihaistoica/REPOSITORIES/mcugdx/examples/doom/build/doom.elf'
--- Warning: Serial ports accessed as /dev/tty.* will hang gdb if launched.
--- Using /dev/cu.usbmodem1101 instead...
--- esp-idf-monitor 1.8.0 on /dev/cu.usbmodem1101 115200
--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H
ESP-ROM:esp32s3-20210327
Build:Mar 27 2021
rst:0x15 (USB_UART_CHIP_RESET),boot:0xb (SPI_FAST_FLASH_BOOT)
Saved PC:0x40049aea
--- 0x40049aea: esp_rom_spiflash_read_status in ROM
SPIWP:0xee
mode:DIO, clock div:1
load:0x3fce2820,len:0x1700
load:0x403c8700,len:0xe20
load:0x403cb700,len:0x31f8
entry 0x403c8938
I (24) boot: ESP-IDF v5.5.1-dirty 2nd stage bootloader
I (24) boot: compile time Nov 4 2025 23:28:29
I (25) boot: Multicore bootloader
I (25) boot: chip revision: v0.2
I (25) boot: efuse block revision: v1.3
I (25) qio_mode: Enabling QIO for flash chip MXIC
I (25) boot.esp32s3: Boot SPI Speed : 80MHz
I (25) boot.esp32s3: SPI Mode : QIO
I (26) boot.esp32s3: SPI Flash Size : 16MB
I (26) boot: Enabling RNG early entropy source...
I (26) boot: Partition Table:
I (26) boot: ## Label Usage Type ST Offset Length
I (27) boot: 0 nvs WiFi data 01 02 00009000 00006000
I (27) boot: 1 phy_init RF data 01 01 0000f000 00001000
I (27) boot: 2 factory factory app 00 00 00010000 00100000
I (28) boot: 3 rofs Unknown data 01 06 00110000 00e00000
I (28) boot: End of partition table
I (28) esp_image: segment 0: paddr=00010020 vaddr=3c020020 size=09d98h ( 40344) map
I (35) esp_image: segment 1: paddr=00019dc0 vaddr=3fc92d00 size=03154h ( 12628) load
I (37) esp_image: segment 2: paddr=0001cf1c vaddr=40374000 size=030fch ( 12540) load
I (40) esp_image: segment 3: paddr=00020020 vaddr=42000020 size=154f0h ( 87280) map
I (54) esp_image: segment 4: paddr=00035518 vaddr=403770fc size=0bbd8h ( 48088) load
I (63) esp_image: segment 5: paddr=000410f8 vaddr=50000000 size=00020h ( 32) load
I (69) boot: Loaded app from partition at offset 0x10000
I (69) boot: Disabling RNG early entropy source...
W (70) flash HPM: HPM mode is optional feature that depends on flash model. Read Docs First!
W (71) flash HPM: HPM mode with DC adjustment is disabled. Some flash models may not be supported. Read Docs First!
W (71) flash HPM: High performance mode of this flash model hasn't been supported.
I can provide the sdkcofing if necessary
