Hallo zusammen
Ich hätte eine Frage zu ESPHome in Verbindung mit einem Display.
Was ich bisher geschafft habe, ist das Display, an meinem ESP32 D1 mini in Betrieb zu nehmen.
Auch das Einfügen von einem Sensor und einem statischen Bild funktioniert.
Jetzt ist aber mein Ziel, auf dem Display den QR-Code des Gastzugangs der Firtzbox darzustellen. Bei diesem handelt es sich um eine PNG mit 132x132px Auflösung.
Sobald ich die Komponente online_image hinzufüge, habe ich ein Problem.
In der Beschreibung zu online_image: steht, dass es eine gute Portion RAM benötigt, aber nicht wie viel.
Der Boot rennt dann in eine Loop, da er der PNGLE Engine keinen RAM zuweisen kann . Manchmal bekomme ich durch das Debug im Code auch die Heap Size angezeigt. Aktuell leider nicht, daher kann ich sie im Log nicht zeigen. Sie war aber um den Dreh von 65kB, wenn ich mal eine angezeigt bekommen habe.
Das Bild hat nur ca. 1kB. Akzuell habe ich es alsstatisches Bild in HA abgelegt, da die Fritztools Integration die Url immer mit einem Token versieht. Da ist auch noch eine Baustelle, aber erst einmal würde ich gerne überhaupt ein Bild bekommen.
Kennt jemand eine Möglichkeit festzulegen, wie viel RAM online_image verwenden darf?
Das ist mein erstes Projekt mit ESPHome, daher habe ich noch keine große Erfahrung auf die ich zurückgreifen könnte.
Mein Code sieht wie folgt aus:
esphome:
name: display-test-eps32
friendly_name: Display_Test_EPS32
esp32:
board: wemos_d1_mini32
framework:
type: arduino
# Debug Section
debug:
update_interval: 5s
text_sensor:
- platform: debug
device:
name: "Device Info"
reset_reason:
name: "Reset Reason"
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "D+0Gf0UqavS18B1ekzHNSeS9NzBm0tQFYJdcUPKivVU="
ota:
- platform: esphome
password: "f257e56991b27b96b760a8cb82cee42d"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Display-Test-Eps32"
password: "mY6EtmOMwET0"
on_connect:
- component.update: qr_code
captive_portal:
# Schriftsatz definieren
font:
- file: "gfonts://Roboto"
id: roboto
size: 20
# Farbdefinition
color:
- id: color_red
hex: 'FF0000'
- id: color_green
hex: '00FF00'
- id: color_blue
hex: '0000FF'
#http request
http_request:
verify_ssl: false
timeout: 50s
#Sensor für Bild
online_image:
- url: "http://192.168.75.27:8123/local/test_qr_code.png"
format: png
type: binary
id: qr_code
on_download_finished:
lambda: |-
if (cached) {
ESP_LOGD("online_image", "Cache hit: using cached image");
} else {
ESP_LOGD("online_image", "Cache miss: fresh download");
}
# logger.log: "fertig"
image:
- file: mdi:alert-outline
id: alert
type: grayscale
transparency: alpha_channel
resize: 80x80
# HA Sensoren
sensor:
- platform: homeassistant
entity_id: sensor.power_meter_og_wirkleistung
id: gb_empfangen
name: "Test"
# Example configuration entry - single controller
spi:
- id: tft
clk_pin: GPIO18
miso_pin: GPIO19
mosi_pin: GPIO23
output:
- platform: ledc
pin: GPIO16
id: backlight_pwm
light:
- platform: monochromatic
output: backlight_pwm
name: Display Backlight
id: backlight
restore_mode: ALWAYS_ON
display:
- platform: ili9xxx
id: esp_display
spi_id: tft
model: ST7789V
cs_pin: GPIO5
dc_pin: GPIO22
reset_pin: GPIO21
# auto_clear_enabled: true
# update_interval: 1s
dimensions:
height: 280
width: 240
offset_height: 20
offset_width: 0
rotation: 0°
color_palette: 8BIT
color_order: BGR
# show_test_card: true
invert_colors: true
lambda: |-
it.printf(0, 150, id(roboto), "%.1f", id(gb_empfangen).state);
# it.print(50,0, id(roboto), "Hello World");
# it.line(40, 0, 80, 0, Color(color_red));
# it.line(60, 2, 100, 2, Color(color_green));
# it.line(80, 4, 120, 4, Color(color_blue));
# it.line(100, 6, 140, 6, Color(color_red));
# it.line(120, 8, 160, 8, Color(color_green));
# it.line(140, 10, 180, 10, Color(color_blue));
# it.line(160, 12, 200, 12, Color(color_red));
# it.image(21, 6, id(alert));
# it.image(21, 6, id(qr_code));
#interval:
# - interval: 30s
# then:
# - component.update: qr_code
Der Log ist hier:
Ohne Heap Size
[19:31:57][D][esphome.ota:305]: Progress: 24.3%
[19:31:57][D][esphome.ota:305]: Progress: 33.9%
[19:31:58][D][esphome.ota:305]: Progress: 41.8%
[19:31:59][D][esphome.ota:305]: Progress: 48.7%
[19:32:00][D][esphome.ota:305]: Progress: 57.9%
[19:32:01][D][esphome.ota:305]: Progress: 67.2%
[19:32:02][D][esphome.ota:305]: Progress: 73.2%
[19:32:03][D][esphome.ota:305]: Progress: 81.3%
[19:32:04][D][esphome.ota:305]: Progress: 88.8%
[19:32:05][D][esphome.ota:305]: Progress: 97.8%
[19:32:06][I][esphome.ota:338]: Update complete
[19:32:06][W][component:307]: esphome.ota cleared Warning flag
[19:32:06][I][app:198]: Rebooting safely
[19:32:06][D][esp32.preferences:142]: Writing 1 items: 1 cached, 0 written, 0 failed
[19:32:06]ets Jul 29 2019 12:21:46
[19:32:06]
[19:32:06]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:06]configsip: 0, SPIWP:0xee
[19:32:06]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:06]mode:DIO, clock div:2
[19:32:06]load:0x3fff0030,len:4688
[19:32:06]load:0x40078000,len:15504
[19:32:06]load:0x40080400,len:4
[19:32:06]load:0x40080404,len:3196
[19:32:06]entry 0x400805a4
[19:32:07]E (574) esp_core_dump_flash: No co�fx dump partition found!
[19:32:07]E (574) esp_core_dump_flash: No core dump partition found!
[19:32:07][I][logger:169]: Log initialized
[19:32:07][C][safe_mode:082]: There have been 0 suspected unsuccessful boot attempts
[19:32:07][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:07][I][app:049]: Running through setup()
[19:32:07][C][spi:040]: Running setup
[19:32:07][C][ledc.output:119]: Running setup
[19:32:07][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:07][D][esp32:117]: rtc: 0
[19:32:07][D][esp32:117]: rtc: 0
[19:32:07][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:07][D][esp32:117]: rtc: 0
[19:32:08][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:08][C][light:021]: Running setup for 'Display Backlight'
[19:32:08][D][light:052]: 'Display Backlight' Setting:
[19:32:08][D][light:058]: Color mode:
[19:32:08][D][light:065]: State: ON
[19:32:08][D][light:103]: Transition length: 1.0s
[19:32:08][C][wifi:048]: Running setup
[19:32:08][C][wifi:061]: Starting
[19:32:08][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:08][D][wifi:495]: Starting scan
[19:32:08][W][component:407]: display took a long time for an operation (81 ms)
[19:32:08][W][component:408]: Components should block for at most 30 ms
[19:32:08][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:10][D][wifi:516]: Found networks:
[19:32:11][D][wifi:639]: Disabling AP
[19:32:11][C][api:034]: Running setup
[19:32:11][W][component:279]: api set Warning flag: unspecified
[19:32:11][I][app:086]: setup() finished successfully!
[19:32:11][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:11][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:11][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:11][D][http_request.arduino:140]: Content-Length: 350
[19:32:11][D][online_image:175]: Starting download
[19:32:11][D][online_image:194]: Allocating PNG decoder
[19:32:11][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:11][I][online_image:212]: Downloading image (Size: 350)
[19:32:11][W][component:307]: wifi cleared Warning flag
[19:32:11][W][component:407]: wifi took a long time for an operation (103 ms)
[19:32:12][W][component:408]: Components should block for at most 30 ms
[19:32:12]Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled.
[19:32:12]
[19:32:12]Core 1 register dump:
[19:32:12]PC : 0x4008aeed PS : 0x00060230 A0 : 0x801ab18d A1 : 0x3ffb1b80
[19:32:12]A2 : 0x16008a00 A3 : 0x160089fc A4 : 0x000000ff A5 : 0x0000ff00
[19:32:12]A6 : 0x00ff0000 A7 : 0xff000000 A8 : 0x00000000 A9 : 0x00000000
[19:32:12]A10 : 0x00000022 A11 : 0x00000080 A12 : 0x00000000 A13 : 0x3f402487
[19:32:12]A14 : 0x00000003 A15 : 0x00000004 SAR : 0x00000004 EXCCAUSE: 0x0000001c
[19:32:12]EXCVADDR: 0x16008a00 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:32:12]
[19:32:12]
[19:32:12]Backtrace: 0x4008aeea:0x3ffb1b80 0x401ab18a:0x3ffb1b90 0x401a3379:0x3ffb1eb0 0x401a33b6:0x3ffb1f40 0x400e18de:0x3ffb1f80 0x400e1a8a:0x3ffb1fa0 0x400e1e36:0x3ffb1fe0 0x400eb4c2:0x3ffb20c0 0x400eb4ee:0x3ffb20f0 0x400e4309:0x3ffb2150 0x400e39d4:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:12]
[19:32:12]
[19:32:12]
[19:32:12]
[19:32:12]ELF file SHA256: 2f563b0e5
[19:32:12]
[19:32:12]E (4916) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:12]E (4925) esp_core_dump_elf: Elf write init failed!
[19:32:12]E (4929) esp_core_dump_common: Core dump write failed with error=-1
[19:32:12]Rebooting...
[19:32:12]ets Jul 29 2019 12:21:46
[19:32:12]
[19:32:12]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:12]configsip: 0, SPIWP:0xee
[19:32:12]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:12]mode:DIO, clock div:2
[19:32:12]load:0x3fff0030,len:4688
[19:32:12]load:0x40078000,len:15504
[19:32:12]load:0x40080400,len:4
[19:32:12]load:0x40080404,len:3196
[19:32:12]entry 0x400805a4
[19:32:12]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:12]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:12][I][logger:169]: Log initialized
[19:32:12][C][safe_mode:082]: There have been 1 suspected unsuccessful boot attempts
[19:32:12][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:12][I][app:049]: Running through setup()
[19:32:12][C][spi:040]: Running setup
[19:32:12][C][ledc.output:119]: Running setup
[19:32:12][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:12][D][esp32:117]: rtc: 0
[19:32:12][D][esp32:117]: rtc: 0
[19:32:12][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:12][D][esp32:117]: rtc: 0
[19:32:13][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:13][C][light:021]: Running setup for 'Display Backlight'
[19:32:13][D][light:052]: 'Display Backlight' Setting:
[19:32:13][D][light:058]: Color mode:
[19:32:13][D][light:065]: State: ON
[19:32:13][D][light:103]: Transition length: 1.0s
[19:32:13][C][wifi:048]: Running setup
[19:32:13][C][wifi:061]: Starting
[19:32:13][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:13][D][wifi:495]: Starting scan
[19:32:13][W][component:407]: display took a long time for an operation (81 ms)
[19:32:13][W][component:408]: Components should block for at most 30 ms
[19:32:13][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:16][D][wifi:516]: Found networks:
[19:32:17][D][wifi:639]: Disabling AP
[19:32:17][C][api:034]: Running setup
[19:32:17][W][component:279]: api set Warning flag: unspecified
[19:32:17][I][app:086]: setup() finished successfully!
[19:32:17][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:17][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:17][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:17][D][http_request.arduino:140]: Content-Length: 350
[19:32:17][D][online_image:175]: Starting download
[19:32:17][D][online_image:194]: Allocating PNG decoder
[19:32:17][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:17]Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
[19:32:17]
[19:32:17]Core 1 register dump:
[19:32:17]PC : 0x401b5509 PS : 0x00060030 A0 : 0x800e4341 A1 : 0x3ffb1fd0
[19:32:17]A2 : 0x0000001f A3 : 0x3fff60b0 A4 : 0x0000002f A5 : 0x3f40298c
[19:32:17]A6 : 0x3ffb1ff0 A7 : 0x0000ab78 A8 : 0x800e902e A9 : 0x3ffb1fb0
[19:32:17]A10 : 0x3ffc3f2c A11 : 0x3fff5ffc A12 : 0x3ffb27f8 A13 : 0x3f40298c
[19:32:17]A14 : 0x3ffb1fd0 A15 : 0x00000028 SAR : 0x00000004 EXCCAUSE: 0x0000001d
[19:32:17]EXCVADDR: 0x00000097 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:32:17]
[19:32:17]
[19:32:17]Backtrace: 0x401b5506:0x3ffb1fd0 0x400e433e:0x3ffb1ff0 0x400e40e3:0x3ffb2010 0x400ec0cd:0x3ffb2160 0x401b49cb:0x3ffb2180 0x401b444d:0x3ffb21a0 0x400e7ce4:0x3ffb21c0 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:17]
[19:32:17]
[19:32:17]
[19:32:17]
[19:32:17]ELF file SHA256: 2f563b0e5
[19:32:17]
[19:32:17]E (4919) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:17]E (4927) esp_core_dump_elf: Elf write init failed!
[19:32:17]E (4931) esp_core_dump_common: Core dump write failed with error=-1
[19:32:17]Rebooting...
[19:32:17]ets Jul 29 2019 12:21:46
[19:32:17]
[19:32:17]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:17]configsip: 0, SPIWP:0xee
[19:32:17]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:17]mode:DIO, clock div:2
[19:32:17]load:0x3fff0030,len:4688
[19:32:17]load:0x40078000,len:15504
[19:32:17]load:0x40080400,len:4
[19:32:17]load:0x40080404,len:3196
[19:32:17]entry 0x400805a4
[19:32:17]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:17]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:17][I][logger:169]: Log initialized
[19:32:17][C][safe_mode:082]: There have been 2 suspected unsuccessful boot attempts
[19:32:17][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:17][I][app:049]: Running through setup()
[19:32:17][C][spi:040]: Running setup
[19:32:17][C][ledc.output:119]: Running setup
[19:32:17][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:17][D][esp32:117]: rtc: 0
[19:32:17][D][esp32:117]: rtc: 0
[19:32:17][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:17][D][esp32:117]: rtc: 0
[19:32:18][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:18][C][light:021]: Running setup for 'Display Backlight'
[19:32:18][D][light:052]: 'Display Backlight' Setting:
[19:32:18][D][light:058]: Color mode:
[19:32:18][D][light:065]: State: ON
[19:32:18][D][light:103]: Transition length: 1.0s
[19:32:18][C][wifi:048]: Running setup
[19:32:18][C][wifi:061]: Starting
[19:32:18][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:18][D][wifi:495]: Starting scan
[19:32:18][W][component:407]: display took a long time for an operation (81 ms)
[19:32:18][W][component:408]: Components should block for at most 30 ms
[19:32:18][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:21][D][wifi:516]: Found networks:
[19:32:22][D][wifi:639]: Disabling AP
[19:32:22][C][api:034]: Running setup
[19:32:22][W][component:279]: api set Warning flag: unspecified
[19:32:22][I][app:086]: setup() finished successfully!
[19:32:22][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:22][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:22][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:22][D][http_request.arduino:140]: Content-Length: 350
[19:32:22][D][online_image:175]: Starting download
[19:32:22][D][online_image:194]: Allocating PNG decoder
[19:32:22][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:22]Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
[19:32:22]
[19:32:22]Core 1 register dump:
[19:32:22]PC : 0x401b5509 PS : 0x00060030 A0 : 0x800e4341 A1 : 0x3ffb1fd0
[19:32:22]A2 : 0x00000004 A3 : 0x3fff6538 A4 : 0x0000002f A5 : 0x3f40298c
[19:32:22]A6 : 0x3ffb1ff0 A7 : 0x0000ab78 A8 : 0x800e902e A9 : 0x3ffb1fb0
[19:32:22]A10 : 0x3ffc3f2c A11 : 0x3fff6484 A12 : 0x3ffb27f8 A13 : 0x3f40298c
[19:32:22]A14 : 0x3ffb1fd0 A15 : 0x00000028 SAR : 0x00000004 EXCCAUSE: 0x0000001d
[19:32:22]EXCVADDR: 0x0000007c LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:32:22]
[19:32:22]
[19:32:22]Backtrace: 0x401b5506:0x3ffb1fd0 0x400e433e:0x3ffb1ff0 0x400e40e3:0x3ffb2010 0x400ec0cd:0x3ffb2160 0x401b49cb:0x3ffb2180 0x401b444d:0x3ffb21a0 0x400e7ce4:0x3ffb21c0 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:22]
[19:32:22]
[19:32:22]
[19:32:22]
[19:32:22]ELF file SHA256: 2f563b0e5
[19:32:22]
[19:32:22]E (4956) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:22]E (4964) esp_core_dump_elf: Elf write init failed!
[19:32:22]E (4968) esp_core_dump_common: Core dump write failed with error=-1
[19:32:22]Rebooting...
[19:32:22]ets Jul 29 2019 12:21:46
[19:32:22]
[19:32:22]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:22]configsip: 0, SPIWP:0xee
[19:32:22]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:22]mode:DIO, clock div:2
[19:32:22]load:0x3fff0030,len:4688
[19:32:22]load:0x40078000,len:15504
[19:32:22]load:0x40080400,len:4
[19:32:22]load:0x40080404,len:3196
[19:32:22]entry 0x400805a4
[19:32:23]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:23]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:23][I][logger:169]: Log initialized
[19:32:23][C][safe_mode:082]: There have been 3 suspected unsuccessful boot attempts
[19:32:23][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:23][I][app:049]: Running through setup()
[19:32:23][C][spi:040]: Running setup
[19:32:23][C][ledc.output:119]: Running setup
[19:32:23][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:23][D][esp32:117]: rtc: 0
[19:32:23][D][esp32:117]: rtc: 0
[19:32:23][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:23][D][esp32:117]: rtc: 0
[19:32:23][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:23][C][light:021]: Running setup for 'Display Backlight'
[19:32:23][D][light:052]: 'Display Backlight' Setting:
[19:32:23][D][light:058]: Color mode:
[19:32:23][D][light:065]: State: ON
[19:32:23][D][light:103]: Transition length: 1.0s
[19:32:23][C][wifi:048]: Running setup
[19:32:23][C][wifi:061]: Starting
[19:32:23][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:23][D][wifi:495]: Starting scan
[19:32:23][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:24][W][component:407]: display took a long time for an operation (81 ms)
[19:32:24][W][component:408]: Components should block for at most 30 ms
[19:32:26][D][wifi:516]: Found networks:
[19:32:27][D][wifi:639]: Disabling AP
[19:32:27][C][api:034]: Running setup
[19:32:27][W][component:279]: api set Warning flag: unspecified
[19:32:27][I][app:086]: setup() finished successfully!
[19:32:27][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:27][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:27][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:27][D][http_request.arduino:140]: Content-Length: 350
[19:32:27][D][online_image:175]: Starting download
[19:32:27][D][online_image:194]: Allocating PNG decoder
[19:32:27][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:27][I][online_image:212]: Downloading image (Size: 350)
[19:32:27][W][component:307]: wifi cleared Warning flag
[19:32:27][W][component:407]: wifi took a long time for an operation (100 ms)
[19:32:27][W][component:408]: Components should block for at most 30 ms
[19:32:27]Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled.
[19:32:27]
[19:32:27]Core 1 register dump:
[19:32:27]PC : 0x4008aeed PS : 0x00060230 A0 : 0x801ab18d A1 : 0x3ffb1b80
[19:32:27]A2 : 0x8b506a00 A3 : 0x8b5069fc A4 : 0x000000ff A5 : 0x0000ff00
[19:32:27]A6 : 0x00ff0000 A7 : 0xff000000 A8 : 0x00000000 A9 : 0x00000000
[19:32:27]A10 : 0x00000022 A11 : 0x00000080 A12 : 0x00000000 A13 : 0x3f402487
[19:32:27]A14 : 0x00000003 A15 : 0x00000004 SAR : 0x00000004 EXCCAUSE: 0x0000001c
[19:32:27]EXCVADDR: 0x8b506a00 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:32:27]
[19:32:27]
[19:32:27]Backtrace: 0x4008aeea:0x3ffb1b80 0x401ab18a:0x3ffb1b90 0x401a3379:0x3ffb1eb0 0x401a33b6:0x3ffb1f40 0x400e18de:0x3ffb1f80 0x400e1a8a:0x3ffb1fa0 0x400e1e36:0x3ffb1fe0 0x400eb4c2:0x3ffb20c0 0x400eb4ee:0x3ffb20f0 0x400e4309:0x3ffb2150 0x400e39d4:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:27]
[19:32:27]
[19:32:27]
[19:32:27]
[19:32:27]ELF file SHA256: 2f563b0e5
[19:32:27]
[19:32:27]E (4917) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:27]E (4925) esp_core_dump_elf: Elf write init failed!
[19:32:27]E (4930) esp_core_dump_common: Core dump write failed with error=-1
[19:32:27]Rebooting...
[19:32:27]ets Jul 29 2019 12:21:46
[19:32:27]
[19:32:27]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:27]configsip: 0, SPIWP:0xee
[19:32:27]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:27]mode:DIO, clock div:2
[19:32:27]load:0x3fff0030,len:4688
[19:32:27]load:0x40078000,len:15504
[19:32:27]load:0x40080400,len:4
[19:32:27]load:0x40080404,len:3196
[19:32:27]entry 0x400805a4
[19:32:28]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:28]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:28][I][logger:169]: Log initialized
[19:32:28][C][safe_mode:082]: There have been 4 suspected unsuccessful boot attempts
[19:32:28][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:28][I][app:049]: Running through setup()
[19:32:28][C][spi:040]: Running setup
[19:32:28][C][ledc.output:119]: Running setup
[19:32:28][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:28][D][esp32:117]: rtc: 0
[19:32:28][D][esp32:117]: rtc: 0
[19:32:28][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:28][D][esp32:117]: rtc: 0
[19:32:28][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:28][C][light:021]: Running setup for 'Display Backlight'
[19:32:28][D][light:052]: 'Display Backlight' Setting:
[19:32:28][D][light:058]: Color mode:
[19:32:28][D][light:065]: State: ON
[19:32:28][D][light:103]: Transition length: 1.0s
[19:32:28][C][wifi:048]: Running setup
[19:32:28][C][wifi:061]: Starting
[19:32:28][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:29][D][wifi:495]: Starting scan
[19:32:29][W][component:407]: display took a long time for an operation (81 ms)
[19:32:29][W][component:408]: Components should block for at most 30 ms
[19:32:29][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:31][D][wifi:516]: Found networks:
[19:32:32][D][wifi:639]: Disabling AP
[19:32:32][C][api:034]: Running setup
[19:32:32][W][component:279]: api set Warning flag: unspecified
[19:32:32][I][app:086]: setup() finished successfully!
[19:32:32][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:32][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:32][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:32][D][http_request.arduino:140]: Content-Length: 350
[19:32:32][D][online_image:175]: Starting download
[19:32:32][D][online_image:194]: Allocating PNG decoder
[19:32:32][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:32]Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
[19:32:32]
[19:32:32]Core 1 register dump:
[19:32:32]PC : 0x401b5509 PS : 0x00060030 A0 : 0x800e4341 A1 : 0x3ffb1fd0
[19:32:32]A2 : 0xe3ec51b2 A3 : 0x3fff64f0 A4 : 0x0000002f A5 : 0x3f40298c
[19:32:32]A6 : 0x3ffb1ff0 A7 : 0x0000ab78 A8 : 0x800e902e A9 : 0x3ffb1fb0
[19:32:32]A10 : 0x3ffc3f2c A11 : 0x3fff6010 A12 : 0x3ffb27f8 A13 : 0x3f40298c
[19:32:32]A14 : 0x3ffb1fd0 A15 : 0x00000028 SAR : 0x00000004 EXCCAUSE: 0x0000001d
[19:32:32]EXCVADDR: 0xe3ec522a LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:32:32]
[19:32:32]
[19:32:32]Backtrace: 0x401b5506:0x3ffb1fd0 0x400e433e:0x3ffb1ff0 0x400e40e3:0x3ffb2010 0x400ec0cd:0x3ffb2160 0x401b49cb:0x3ffb2180 0x401b444d:0x3ffb21a0 0x400e7ce4:0x3ffb21c0 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:32]
[19:32:32]
[19:32:32]
[19:32:32]
[19:32:32]ELF file SHA256: 2f563b0e5
[19:32:32]
[19:32:32]E (4864) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:32]E (4872) esp_core_dump_elf: Elf write init failed!
[19:32:32]E (4877) esp_core_dump_common: Core dump write failed with error=-1
[19:32:32]Rebooting...
[19:32:32]ets Jul 29 2019 12:21:46
[19:32:32]
[19:32:32]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:32]configsip: 0, SPIWP:0xee
[19:32:32]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:32]mode:DIO, clock div:2
[19:32:32]load:0x3fff0030,len:4688
[19:32:32]load:0x40078000,len:15504
[19:32:32]load:0x40080400,len:4
[19:32:32]load:0x40080404,len:3196
[19:32:32]entry 0x400805a4
[19:32:33]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:33]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:33][I][logger:169]: Log initialized
[19:32:33][C][safe_mode:082]: There have been 5 suspected unsuccessful boot attempts
[19:32:33][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:33][I][app:049]: Running through setup()
[19:32:33][C][spi:040]: Running setup
[19:32:33][C][ledc.output:119]: Running setup
[19:32:33][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:33][D][esp32:117]: rtc: 0
[19:32:33][D][esp32:117]: rtc: 0
[19:32:33][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:33][D][esp32:117]: rtc: 0
[19:32:34][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:34][C][light:021]: Running setup for 'Display Backlight'
[19:32:34][D][light:052]: 'Display Backlight' Setting:
[19:32:34][D][light:058]: Color mode:
[19:32:34][D][light:065]: State: ON
[19:32:34][D][light:103]: Transition length: 1.0s
[19:32:34][C][wifi:048]: Running setup
[19:32:34][C][wifi:061]: Starting
[19:32:34][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:34][D][wifi:495]: Starting scan
[19:32:34][W][component:407]: display took a long time for an operation (81 ms)
[19:32:34][W][component:408]: Components should block for at most 30 ms
[19:32:34][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:36][D][wifi:516]: Found networks:
[19:32:37][D][wifi:639]: Disabling AP
[19:32:37][C][api:034]: Running setup
[19:32:37][W][component:279]: api set Warning flag: unspecified
[19:32:37][I][app:086]: setup() finished successfully!
[19:32:37][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:37][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:38][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:38][D][http_request.arduino:140]: Content-Length: 350
[19:32:38][D][online_image:175]: Starting download
[19:32:38][D][online_image:194]: Allocating PNG decoder
[19:32:38][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:38][I][online_image:212]: Downloading image (Size: 350)
[19:32:38][W][component:307]: wifi cleared Warning flag
[19:32:38][W][component:407]: wifi took a long time for an operation (96 ms)
[19:32:38][W][component:408]: Components should block for at most 30 ms
[19:32:38]
[19:32:38]assert failed: heap_caps_free heap_caps_base.c:69 (heap != NULL && "free() target pointer is outside heap areas")
[19:32:38]
[19:32:38]
[19:32:38]Backtrace: 0x40083601:0x3ffb1f00 0x4008e33d:0x3ffb1f20 0x40094692:0x3ffb1f40 0x400839b5:0x3ffb2070 0x400946c5:0x3ffb2090 0x400f8afd:0x3ffb20b0 0x400f903e:0x3ffb20d0 0x400e42ed:0x3ffb2150 0x400e39d4:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:38]
[19:32:38]
[19:32:38]
[19:32:38]
[19:32:38]ELF file SHA256: 2f563b0e5
[19:32:38]
[19:32:38]E (4881) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:38]E (4889) esp_core_dump_elf: Elf write init failed!
[19:32:38]E (4894) esp_core_dump_common: Core dump write failed with error=-1
[19:32:38]Rebooting...
[19:32:38]ets Jul 29 2019 12:21:46
[19:32:38]
[19:32:38]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:38]configsip: 0, SPIWP:0xee
[19:32:38]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:38]mode:DIO, clock div:2
[19:32:38]load:0x3fff0030,len:4688
[19:32:38]load:0x40078000,len:15504
[19:32:38]load:0x40080400,len:4
[19:32:38]load:0x40080404,len:3196
[19:32:38]entry 0x400805a4
[19:32:38]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:38]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:38][I][logger:169]: Log initialized
[19:32:38][C][safe_mode:082]: There have been 6 suspected unsuccessful boot attempts
[19:32:38][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:38][I][app:049]: Running through setup()
[19:32:38][C][spi:040]: Running setup
[19:32:38][C][ledc.output:119]: Running setup
[19:32:38][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:38][D][esp32:117]: rtc: 0
[19:32:38][D][esp32:117]: rtc: 0
[19:32:38][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:38][D][esp32:117]: rtc: 0
[19:32:39][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:39][C][light:021]: Running setup for 'Display Backlight'
[19:32:39][D][light:052]: 'Display Backlight' Setting:
[19:32:39][D][light:058]: Color mode:
[19:32:39][D][light:065]: State: ON
[19:32:39][D][light:103]: Transition length: 1.0s
[19:32:39][C][wifi:048]: Running setup
[19:32:39][C][wifi:061]: Starting
[19:32:39][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:39][D][wifi:495]: Starting scan
[19:32:39][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:39][W][component:407]: display took a long time for an operation (82 ms)
[19:32:39][W][component:408]: Components should block for at most 30 ms
[19:32:42][D][wifi:516]: Found networks:
[19:32:43][D][wifi:639]: Disabling AP
[19:32:43][C][api:034]: Running setup
[19:32:43][W][component:279]: api set Warning flag: unspecified
[19:32:43][I][app:086]: setup() finished successfully!
[19:32:43][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:43][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:43][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:43][D][http_request.arduino:140]: Content-Length: 350
[19:32:43][D][online_image:175]: Starting download
[19:32:43][D][online_image:194]: Allocating PNG decoder
[19:32:43][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:43]Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
[19:32:43]
[19:32:43]Core 1 register dump:
[19:32:43]PC : 0x401b5509 PS : 0x00060030 A0 : 0x800e4341 A1 : 0x3ffb1fd0
[19:32:43]A2 : 0x0000001f A3 : 0x3fff60c8 A4 : 0x0000002f A5 : 0x3f40298c
[19:32:43]A6 : 0x3ffb1ff0 A7 : 0x0000ab78 A8 : 0x800e902e A9 : 0x3ffb1fb0
[19:32:43]A10 : 0x3ffc3f2c A11 : 0x3fff6014 A12 : 0x3ffb27f8 A13 : 0x3f40298c
[19:32:43]A14 : 0x3ffb1fd0 A15 : 0x00000028 SAR : 0x00000004 EXCCAUSE: 0x0000001d
[19:32:43]EXCVADDR: 0x00000097 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:32:43]
[19:32:43]
[19:32:43]Backtrace: 0x401b5506:0x3ffb1fd0 0x400e433e:0x3ffb1ff0 0x400e40e3:0x3ffb2010 0x400ec0cd:0x3ffb2160 0x401b49cb:0x3ffb2180 0x401b444d:0x3ffb21a0 0x400e7ce4:0x3ffb21c0 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:43]
[19:32:43]
[19:32:43]
[19:32:43]
[19:32:43]ELF file SHA256: 2f563b0e5
[19:32:43]
[19:32:43]E (4903) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:43]E (4911) esp_core_dump_elf: Elf write init failed!
[19:32:43]E (4915) esp_core_dump_common: Core dump write failed with error=-1
[19:32:43]Rebooting...
[19:32:43]ets Jul 29 2019 12:21:46
[19:32:43]
[19:32:43]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:43]configsip: 0, SPIWP:0xee
[19:32:43]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:43]mode:DIO, clock div:2
[19:32:43]load:0x3fff0030,len:4688
[19:32:43]load:0x40078000,len:15504
[19:32:43]load:0x40080400,len:4
[19:32:43]load:0x40080404,len:3196
[19:32:43]entry 0x400805a4
[19:32:43]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:43]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:43][I][logger:169]: Log initialized
[19:32:43][C][safe_mode:082]: There have been 7 suspected unsuccessful boot attempts
[19:32:43][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:43][I][app:049]: Running through setup()
[19:32:43][C][spi:040]: Running setup
[19:32:43][C][ledc.output:119]: Running setup
[19:32:43][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:43][D][esp32:117]: rtc: 0
[19:32:43][D][esp32:117]: rtc: 0
[19:32:43][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:43][D][esp32:117]: rtc: 0
[19:32:44][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:44][C][light:021]: Running setup for 'Display Backlight'
[19:32:44][D][light:052]: 'Display Backlight' Setting:
[19:32:44][D][light:058]: Color mode:
[19:32:44][D][light:065]: State: ON
[19:32:44][D][light:103]: Transition length: 1.0s
[19:32:44][C][wifi:048]: Running setup
[19:32:44][C][wifi:061]: Starting
[19:32:44][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:44][D][wifi:495]: Starting scan
[19:32:44][W][component:407]: display took a long time for an operation (81 ms)
[19:32:44][W][component:408]: Components should block for at most 30 ms
[19:32:44][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:47][D][wifi:516]: Found networks:
[19:32:48][D][wifi:639]: Disabling AP
[19:32:48][C][api:034]: Running setup
[19:32:48][W][component:279]: api set Warning flag: unspecified
[19:32:48][I][app:086]: setup() finished successfully!
[19:32:48][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:48][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:48][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:48][D][http_request.arduino:140]: Content-Length: 350
[19:32:48][D][online_image:175]: Starting download
[19:32:48][D][online_image:194]: Allocating PNG decoder
[19:32:48][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:48]Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
[19:32:48]
[19:32:48]Core 1 register dump:
[19:32:48]PC : 0x401b5509 PS : 0x00060030 A0 : 0x800e4341 A1 : 0x3ffb1fd0
[19:32:48]A2 : 0x0000018f A3 : 0x3fff6530 A4 : 0x0000002f A5 : 0x3f40298c
[19:32:48]A6 : 0x3ffb1ff0 A7 : 0x0000ab78 A8 : 0x800e902e A9 : 0x3ffb1fb0
[19:32:48]A10 : 0x3ffc3f2c A11 : 0x3fff6100 A12 : 0x3ffb27f8 A13 : 0x3f40298c
[19:32:48]A14 : 0x3ffb1fd0 A15 : 0x00000028 SAR : 0x00000004 EXCCAUSE: 0x0000001d
[19:32:48]EXCVADDR: 0x00000207 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:32:48]
[19:32:48]
[19:32:48]Backtrace: 0x401b5506:0x3ffb1fd0 0x400e433e:0x3ffb1ff0 0x400e40e3:0x3ffb2010 0x400ec0cd:0x3ffb2160 0x401b49cb:0x3ffb2180 0x401b444d:0x3ffb21a0 0x400e7ce4:0x3ffb21c0 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:48]
[19:32:48]
[19:32:48]
[19:32:48]
[19:32:48]ELF file SHA256: 2f563b0e5
[19:32:48]
[19:32:48]E (4886) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:48]E (4894) esp_core_dump_elf: Elf write init failed!
[19:32:48]E (4898) esp_core_dump_common: Core dump write failed with error=-1
[19:32:48]Rebooting...
[19:32:48]ets Jul 29 2019 12:21:46
[19:32:48]
[19:32:48]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:48]configsip: 0, SPIWP:0xee
[19:32:48]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:48]mode:DIO, clock div:2
[19:32:48]load:0x3fff0030,len:4688
[19:32:48]load:0x40078000,len:15504
[19:32:48]load:0x40080400,len:4
[19:32:48]load:0x40080404,len:3196
[19:32:48]entry 0x400805a4
[19:32:49]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:49]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:49][I][logger:169]: Log initialized
[19:32:49][C][safe_mode:082]: There have been 8 suspected unsuccessful boot attempts
[19:32:49][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:49][I][app:049]: Running through setup()
[19:32:49][C][spi:040]: Running setup
[19:32:49][C][ledc.output:119]: Running setup
[19:32:49][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:49][D][esp32:117]: rtc: 0
[19:32:49][D][esp32:117]: rtc: 0
[19:32:49][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:49][D][esp32:117]: rtc: 0
[19:32:49][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:49][C][light:021]: Running setup for 'Display Backlight'
[19:32:49][D][light:052]: 'Display Backlight' Setting:
[19:32:49][D][light:058]: Color mode:
[19:32:49][D][light:065]: State: ON
[19:32:49][D][light:103]: Transition length: 1.0s
[19:32:49][C][wifi:048]: Running setup
[19:32:49][C][wifi:061]: Starting
[19:32:49][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:49][D][wifi:495]: Starting scan
[19:32:49][W][component:407]: display took a long time for an operation (81 ms)
[19:32:49][W][component:408]: Components should block for at most 30 ms
[19:32:49][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:52][D][wifi:516]: Found networks:
[19:32:53][D][wifi:639]: Disabling AP
[19:32:53][C][api:034]: Running setup
[19:32:53][W][component:279]: api set Warning flag: unspecified
[19:32:53][I][app:086]: setup() finished successfully!
[19:32:53][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:53][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:53][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:53][D][http_request.arduino:140]: Content-Length: 350
[19:32:53][D][online_image:175]: Starting download
[19:32:53][D][online_image:194]: Allocating PNG decoder
[19:32:53][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:53][I][online_image:212]: Downloading image (Size: 350)
[19:32:53][W][component:307]: wifi cleared Warning flag
[19:32:53][W][component:407]: wifi took a long time for an operation (100 ms)
[19:32:53][W][component:408]: Components should block for at most 30 ms
[19:32:53][E][online_image.png:086]: Error decoding image: Invalid state
[19:32:53][E][online_image:250]: Error when decoding image.
[19:32:53]
[19:32:53]assert failed: heap_caps_free heap_caps_base.c:69 (heap != NULL && "free() target pointer is outside heap areas")
[19:32:53]
[19:32:53]
[19:32:53]Backtrace: 0x40083601:0x3ffb1f10 0x4008e33d:0x3ffb1f30 0x40094692:0x3ffb1f50 0x400839b5:0x3ffb2080 0x400946c5:0x3ffb20a0 0x400f8c91:0x3ffb20c0 0x400e423e:0x3ffb20e0 0x400e424d:0x3ffb2100 0x401b403d:0x3ffb2120 0x400e377a:0x3ffb2140 0x400e39ec:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:53]
[19:32:53]
[19:32:53]
[19:32:53]
[19:32:53]ELF file SHA256: 2f563b0e5
[19:32:53]
[19:32:53]E (4910) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:53]E (4919) esp_core_dump_elf: Elf write init failed!
[19:32:53]E (4923) esp_core_dump_common: Core dump write failed with error=-1
[19:32:53]Rebooting...
[19:32:53]ets Jul 29 2019 12:21:46
[19:32:53]
[19:32:53]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:53]configsip: 0, SPIWP:0xee
[19:32:53]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:53]mode:DIO, clock div:2
[19:32:53]load:0x3fff0030,len:4688
[19:32:53]load:0x40078000,len:15504
[19:32:53]load:0x40080400,len:4
[19:32:53]load:0x40080404,len:3196
[19:32:53]entry 0x400805a4
[19:32:54]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:54]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:54][I][logger:169]: Log initialized
[19:32:54][C][safe_mode:082]: There have been 9 suspected unsuccessful boot attempts
[19:32:54][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:54][I][app:049]: Running through setup()
[19:32:54][C][spi:040]: Running setup
[19:32:54][C][ledc.output:119]: Running setup
[19:32:54][D][ili9xxx:034]: Setting up ILI9xxx
[19:32:54][D][esp32:117]: rtc: 0
[19:32:54][D][esp32:117]: rtc: 0
[19:32:54][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:32:54][D][esp32:117]: rtc: 0
[19:32:54][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:32:54][C][light:021]: Running setup for 'Display Backlight'
[19:32:54][D][light:052]: 'Display Backlight' Setting:
[19:32:54][D][light:058]: Color mode:
[19:32:54][D][light:065]: State: ON
[19:32:54][D][light:103]: Transition length: 1.0s
[19:32:54][C][wifi:048]: Running setup
[19:32:54][C][wifi:061]: Starting
[19:32:54][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:54][D][wifi:495]: Starting scan
[19:32:54][W][component:279]: wifi set Warning flag: scanning for networks
[19:32:55][W][component:407]: display took a long time for an operation (81 ms)
[19:32:55][W][component:408]: Components should block for at most 30 ms
[19:32:58][D][wifi:639]: Disabling AP
[19:32:58][C][api:034]: Running setup
[19:32:58][W][component:279]: api set Warning flag: unspecified
[19:32:58][I][app:086]: setup() finished successfully!
[19:32:58][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:32:58][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:32:58][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:32:58][D][http_request.arduino:140]: Content-Length: 350
[19:32:58][D][online_image:175]: Starting download
[19:32:58][D][online_image:194]: Allocating PNG decoder
[19:32:58][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:32:58]Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
[19:32:58]
[19:32:58]Core 1 register dump:
[19:32:58]PC : 0x401b5509 PS : 0x00060030 A0 : 0x800e4341 A1 : 0x3ffb1fd0
[19:32:58]A2 : 0x0000001f A3 : 0x3fff6038 A4 : 0x0000002f A5 : 0x3f40298c
[19:32:58]A6 : 0x3ffb1ff0 A7 : 0x0000ab78 A8 : 0x800e902e A9 : 0x3ffb1fb0
[19:32:58]A10 : 0x3ffc3f2c A11 : 0x3fff5f84 A12 : 0x3ffb27f8 A13 : 0x3f40298c
[19:32:58]A14 : 0x3ffb1fd0 A15 : 0x00000028 SAR : 0x00000004 EXCCAUSE: 0x0000001d
[19:32:58]EXCVADDR: 0x00000097 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:32:58]
[19:32:58]
[19:32:58]Backtrace: 0x401b5506:0x3ffb1fd0 0x400e433e:0x3ffb1ff0 0x400e40e3:0x3ffb2010 0x400ec0cd:0x3ffb2160 0x401b49cb:0x3ffb2180 0x401b444d:0x3ffb21a0 0x400e7ce4:0x3ffb21c0 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:32:58]
[19:32:58]
[19:32:58]
[19:32:58]
[19:32:58]ELF file SHA256: 2f563b0e5
[19:32:58]
[19:32:58]E (4908) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:32:58]E (4916) esp_core_dump_elf: Elf write init failed!
[19:32:58]E (4920) esp_core_dump_common: Core dump write failed with error=-1
[19:32:58]Rebooting...
[19:32:58]ets Jul 29 2019 12:21:46
[19:32:58]
[19:32:58]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:32:58]configsip: 0, SPIWP:0xee
[19:32:58]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:32:58]mode:DIO, clock div:2
[19:32:58]load:0x3fff0030,len:4688
[19:32:58]load:0x40078000,len:15504
[19:32:58]load:0x40080400,len:4
[19:32:58]load:0x40080404,len:3196
[19:32:58]entry 0x400805a4
[19:32:59]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:32:59]E (533) esp_core_dump_flash: No core dump partition found!
[19:32:59][I][logger:169]: Log initialized
[19:32:59][C][safe_mode:082]: There have been 10 suspected unsuccessful boot attempts
[19:32:59][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:32:59][E][safe_mode:089]: Boot loop detected. Proceeding
[19:32:59][E][component:286]: safe_mode set Error flag: unspecified
[19:32:59][I][app:049]: Running through setup()
[19:32:59][C][wifi:048]: Running setup
[19:32:59][C][wifi:061]: Starting
[19:32:59][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:32:59][D][wifi:495]: Starting scan
[19:32:59][W][component:279]: wifi set Warning flag: scanning for networks
[19:33:02][D][wifi:516]: Found networks:
[19:33:03][C][logger:246]: Logger:
[19:33:03][C][logger:246]: Max Level: DEBUG
[19:33:03][C][logger:246]: Initial Level: DEBUG
[19:33:03][C][logger:252]: Log Baud Rate: 115200
[19:33:03][C][logger:252]: Hardware UART: UART0
[19:33:03][C][logger:259]: Task Log Buffer Size: 768
[19:33:03][C][captive_portal:099]: Captive Portal:
[19:33:03][C][esphome.ota:073]: Over-The-Air updates:
[19:33:03][C][esphome.ota:073]: Address: display-test-eps32.local:3232
[19:33:03][C][esphome.ota:073]: Version: 2
[19:33:03][C][esphome.ota:080]: Password configured
[19:33:03][C][safe_mode:018]: Safe Mode:
[19:33:03][C][safe_mode:019]: Boot considered successful after 60 seconds
[19:33:03][C][safe_mode:019]: Invoke after 10 boot attempts
[19:33:03][C][safe_mode:019]: Remain for 300 seconds
[19:33:03][W][safe_mode:032]: SAFE MODE IS ACTIVE
[19:33:03][C][mdns:122]: mDNS:
[19:33:03][C][mdns:122]: Hostname: display-test-eps32
[19:33:59][I][safe_mode:042]: Boot seems successful; resetting boot loop counter
[19:33:59][D][esp32.preferences:142]: Writing 1 items: 1 cached, 0 written, 0 failed
Mit Heap Size
[19:37:59][I][app:191]: Forcing a reboot
[19:37:59]ets Jul 29 2019 12:21:46
[19:37:59]
[19:37:59]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:37:59]configsip: 0, SPIWP:0xee
[19:37:59]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:37:59]mode:DIO, clock div:2
[19:37:59]load:0x3fff0030,len:4688
[19:37:59]load:0x40078000,len:15504
[19:37:59]load:0x40080400,len:4
[19:37:59]load:0x40080404,len:3196
[19:37:59]entry 0x400805a4
[19:38:00]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:00]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:00][I][logger:169]: Log initialized
[19:38:00][C][safe_mode:082]: There have been 0 suspected unsuccessful boot attempts
[19:38:00][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:00][I][app:049]: Running through setup()
[19:38:00][C][spi:040]: Running setup
[19:38:00][C][ledc.output:119]: Running setup
[19:38:00][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:00][D][esp32:117]: rtc: 0
[19:38:00][D][esp32:117]: rtc: 0
[19:38:00][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:00][D][esp32:117]: rtc: 0
[19:38:00][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:00][C][light:021]: Running setup for 'Display Backlight'
[19:38:00][D][light:052]: 'Display Backlight' Setting:
[19:38:00][D][light:058]: Color mode:
[19:38:00][D][light:065]: State: ON
[19:38:00][D][light:103]: Transition length: 1.0s
[19:38:00][C][wifi:048]: Running setup
[19:38:00][C][wifi:061]: Starting
[19:38:00][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:00][D][wifi:495]: Starting scan
[19:38:00][W][component:407]: display took a long time for an operation (81 ms)
[19:38:00][W][component:408]: Components should block for at most 30 ms
[19:38:00][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:03][D][wifi:516]: Found networks:
[19:38:04][D][wifi:639]: Disabling AP
[19:38:04][C][api:034]: Running setup
[19:38:04][W][component:279]: api set Warning flag: unspecified
[19:38:04][I][app:086]: setup() finished successfully!
[19:38:04][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:04][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:04][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:04][D][http_request.arduino:140]: Content-Length: 350
[19:38:04][D][online_image:175]: Starting download
[19:38:04][D][online_image:194]: Allocating PNG decoder
[19:38:04][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:04][I][online_image:212]: Downloading image (Size: 350)
[19:38:04][W][component:307]: wifi cleared Warning flag
[19:38:04][W][component:407]: wifi took a long time for an operation (97 ms)
[19:38:04][W][component:408]: Components should block for at most 30 ms
[19:38:04]Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled.
[19:38:04]
[19:38:04]Core 1 register dump:
[19:38:04]PC : 0x4008aeed PS : 0x00060230 A0 : 0x801ab18d A1 : 0x3ffb1b80
[19:38:04]A2 : 0x00000000 A3 : 0xfffffffc A4 : 0x000000ff A5 : 0x0000ff00
[19:38:04]A6 : 0x00ff0000 A7 : 0xff000000 A8 : 0x00000000 A9 : 0x00000000
[19:38:04]A10 : 0x00000022 A11 : 0x00000080 A12 : 0x00000000 A13 : 0x3f402487
[19:38:04]A14 : 0x00000003 A15 : 0x00000004 SAR : 0x00000004 EXCCAUSE: 0x0000001c
[19:38:04]EXCVADDR: 0x00000000 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:38:04]
[19:38:04]
[19:38:04]Backtrace: 0x4008aeea:0x3ffb1b80 0x401ab18a:0x3ffb1b90 0x401a3379:0x3ffb1eb0 0x401a33b6:0x3ffb1f40 0x400e18de:0x3ffb1f80 0x400e1a8a:0x3ffb1fa0 0x400e1e36:0x3ffb1fe0 0x400eb4c2:0x3ffb20c0 0x400eb4ee:0x3ffb20f0 0x400e4309:0x3ffb2150 0x400e39d4:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:38:04]
[19:38:04]
[19:38:04]
[19:38:04]
[19:38:04]ELF file SHA256: 2f563b0e5
[19:38:04]
[19:38:04]E (4842) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:38:04]E (4850) esp_core_dump_elf: Elf write init failed!
[19:38:04]E (4855) esp_core_dump_common: Core dump write failed with error=-1
[19:38:04]Rebooting...
[19:38:04]ets Jul 29 2019 12:21:46
[19:38:04]
[19:38:04]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:38:04]configsip: 0, SPIWP:0xee
[19:38:04]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:38:04]mode:DIO, clock div:2
[19:38:04]load:0x3fff0030,len:4688
[19:38:04]load:0x40078000,len:15504
[19:38:04]load:0x40080400,len:4
[19:38:04]load:0x40080404,len:3196
[19:38:04]entry 0x400805a4
[19:38:05]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:05]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:05][I][logger:169]: Log initialized
[19:38:05][C][safe_mode:082]: There have been 1 suspected unsuccessful boot attempts
[19:38:05][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:05][I][app:049]: Running through setup()
[19:38:05][C][spi:040]: Running setup
[19:38:05][C][ledc.output:119]: Running setup
[19:38:05][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:05][D][esp32:117]: rtc: 0
[19:38:05][D][esp32:117]: rtc: 0
[19:38:05][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:05][D][esp32:117]: rtc: 0
[19:38:05][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:05][C][light:021]: Running setup for 'Display Backlight'
[19:38:05][D][light:052]: 'Display Backlight' Setting:
[19:38:05][D][light:058]: Color mode:
[19:38:05][D][light:065]: State: ON
[19:38:05][D][light:103]: Transition length: 1.0s
[19:38:05][C][wifi:048]: Running setup
[19:38:05][C][wifi:061]: Starting
[19:38:05][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:05][D][wifi:495]: Starting scan
[19:38:05][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:06][W][component:407]: display took a long time for an operation (81 ms)
[19:38:06][W][component:408]: Components should block for at most 30 ms
[19:38:08][D][wifi:516]: Found networks:
[19:38:09][D][wifi:639]: Disabling AP
[19:38:09][C][api:034]: Running setup
[19:38:09][W][component:279]: api set Warning flag: unspecified
[19:38:09][I][app:086]: setup() finished successfully!
[19:38:09][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:09][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:09][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:09][D][http_request.arduino:140]: Content-Length: 350
[19:38:09][D][online_image:175]: Starting download
[19:38:09][D][online_image:194]: Allocating PNG decoder
[19:38:09][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:09][I][online_image:212]: Downloading image (Size: 350)
[19:38:09][W][component:307]: wifi cleared Warning flag
[19:38:09][W][component:407]: wifi took a long time for an operation (98 ms)
[19:38:09][W][component:408]: Components should block for at most 30 ms
[19:38:09][E][online_image.png:086]: Error decoding image: Invalid state
[19:38:09][E][online_image:250]: Error when decoding image.
[19:38:09]CORRUPT HEAP: Bad tail at 0x3fff6196. Expected 0xbaad5678 got 0x42905678
[19:38:09]
[19:38:09]assert failed: multi_heap_free multi_heap_poisoning.c:279 (head != NULL)
[19:38:09]
[19:38:09]
[19:38:09]Backtrace: 0x40083601:0x3ffb1ef0 0x4008e33d:0x3ffb1f10 0x40094692:0x3ffb1f30 0x4009339b:0x3ffb2060 0x400839cf:0x3ffb2080 0x400946c5:0x3ffb20a0 0x400f8c87:0x3ffb20c0 0x400e423e:0x3ffb20e0 0x400e424d:0x3ffb2100 0x401b403d:0x3ffb2120 0x400e377a:0x3ffb2140 0x400e39ec:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:38:09]
[19:38:09]
[19:38:09]
[19:38:09]
[19:38:09]ELF file SHA256: 2f563b0e5
[19:38:09]
[19:38:09]E (4875) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:38:09]E (4883) esp_core_dump_elf: Elf write init failed!
[19:38:09]E (4888) esp_core_dump_common: Core dump write failed with error=-1
[19:38:09]Rebooting...
[19:38:09]ets Jul 29 2019 12:21:46
[19:38:09]
[19:38:09]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:38:09]configsip: 0, SPIWP:0xee
[19:38:09]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:38:09]mode:DIO, clock div:2
[19:38:09]load:0x3fff0030,len:4688
[19:38:09]load:0x40078000,len:15504
[19:38:09]load:0x40080400,len:4
[19:38:09]load:0x40080404,len:3196
[19:38:09]entry 0x400805a4
[19:38:10]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:10]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:10][I][logger:169]: Log initialized
[19:38:10][C][safe_mode:082]: There have been 2 suspected unsuccessful boot attempts
[19:38:10][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:10][I][app:049]: Running through setup()
[19:38:10][C][spi:040]: Running setup
[19:38:10][C][ledc.output:119]: Running setup
[19:38:10][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:10][D][esp32:117]: rtc: 0
[19:38:10][D][esp32:117]: rtc: 0
[19:38:10][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:10][D][esp32:117]: rtc: 0
[19:38:10][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:10][C][light:021]: Running setup for 'Display Backlight'
[19:38:10][D][light:052]: 'Display Backlight' Setting:
[19:38:10][D][light:058]: Color mode:
[19:38:10][D][light:065]: State: ON
[19:38:10][D][light:103]: Transition length: 1.0s
[19:38:10][C][wifi:048]: Running setup
[19:38:10][C][wifi:061]: Starting
[19:38:10][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:11][D][wifi:495]: Starting scan
[19:38:11][W][component:407]: display took a long time for an operation (81 ms)
[19:38:11][W][component:408]: Components should block for at most 30 ms
[19:38:11][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:13][D][wifi:516]: Found networks:
[19:38:14][C][wifi:455]: DNS2: 0.0.0.0
[19:38:14][D][wifi:639]: Disabling AP
[19:38:14][C][api:034]: Running setup
[19:38:14][W][component:279]: api set Warning flag: unspecified
[19:38:14][I][app:086]: setup() finished successfully!
[19:38:14][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:14][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:14][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:14][D][http_request.arduino:140]: Content-Length: 350
[19:38:14][D][online_image:175]: Starting download
[19:38:14][D][online_image:194]: Allocating PNG decoder
[19:38:14][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:14][I][online_image:212]: Downloading image (Size: 350)
[19:38:14][W][component:307]: wifi cleared Warning flag
[19:38:14][W][component:407]: wifi took a long time for an operation (99 ms)
[19:38:14][W][component:408]: Components should block for at most 30 ms
[19:38:14][E][online_image.png:086]: Error decoding image: Invalid state
[19:38:14][E][online_image:250]: Error when decoding image.
[19:38:14]
[19:38:14]assert failed: heap_caps_free heap_caps_base.c:69 (heap != NULL && "free() target pointer is outside heap areas")
[19:38:14]
[19:38:14]
[19:38:15]Backtrace: 0x40083601:0x3ffb1f10 0x4008e33d:0x3ffb1f30 0x40094692:0x3ffb1f50 0x400839b5:0x3ffb2080 0x400946c5:0x3ffb20a0 0x400f8c87:0x3ffb20c0 0x400e423e:0x3ffb20e0 0x400e424d:0x3ffb2100 0x401b403d:0x3ffb2120 0x400e377a:0x3ffb2140 0x400e39ec:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:38:15]
[19:38:15]
[19:38:15]
[19:38:15]
[19:38:15]ELF file SHA256: 2f563b0e5
[19:38:15]
[19:38:15]E (4936) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:38:15]E (4945) esp_core_dump_elf: Elf write init failed!
[19:38:15]E (4949) esp_core_dump_common: Core dump write failed with error=-1
[19:38:15]Rebooting...
[19:38:15]ets Jul 29 2019 12:21:46
[19:38:15]
[19:38:15]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:38:15]configsip: 0, SPIWP:0xee
[19:38:15]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:38:15]mode:DIO, clock div:2
[19:38:15]load:0x3fff0030,len:4688
[19:38:15]load:0x40078000,len:15504
[19:38:15]load:0x40080400,len:4
[19:38:15]load:0x40080404,len:3196
[19:38:15]entry 0x400805a4
[19:38:15]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:15]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:15][I][logger:169]: Log initialized
[19:38:15][C][safe_mode:082]: There have been 3 suspected unsuccessful boot attempts
[19:38:15][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:15][I][app:049]: Running through setup()
[19:38:15][C][spi:040]: Running setup
[19:38:15][C][ledc.output:119]: Running setup
[19:38:15][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:15][D][esp32:117]: rtc: 0
[19:38:15][D][esp32:117]: rtc: 0
[19:38:15][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:15][D][esp32:117]: rtc: 0
[19:38:16][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:16][C][light:021]: Running setup for 'Display Backlight'
[19:38:16][D][light:052]: 'Display Backlight' Setting:
[19:38:16][D][light:058]: Color mode:
[19:38:16][D][light:065]: State: ON
[19:38:16][D][light:103]: Transition length: 1.0s
[19:38:16][C][wifi:048]: Running setup
[19:38:16][C][wifi:061]: Starting
[19:38:16][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:16][D][wifi:495]: Starting scan
[19:38:16][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:16][W][component:407]: display took a long time for an operation (81 ms)
[19:38:16][W][component:408]: Components should block for at most 30 ms
[19:38:18][D][wifi:516]: Found networks:
[19:38:20][D][wifi:639]: Disabling AP
[19:38:20][C][api:034]: Running setup
[19:38:20][W][component:279]: api set Warning flag: unspecified
[19:38:20][I][app:086]: setup() finished successfully!
[19:38:20][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:20][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:20][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:20][D][http_request.arduino:140]: Content-Length: 350
[19:38:20][D][online_image:175]: Starting download
[19:38:20][D][online_image:194]: Allocating PNG decoder
[19:38:20][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:20][I][online_image:212]: Downloading image (Size: 350)
[19:38:20][W][component:307]: wifi cleared Warning flag
[19:38:20][W][component:407]: wifi took a long time for an operation (102 ms)
[19:38:20][W][component:408]: Components should block for at most 30 ms
[19:38:20]Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled.
[19:38:20]
[19:38:20]Core 1 register dump:
[19:38:20]PC : 0x401b538f PS : 0x00060e30 A0 : 0x800f7038 A1 : 0x3ffb2100
[19:38:20]A2 : 0x00000001 A3 : 0x00000000 A4 : 0x000011e0 A5 : 0x0000f6c0
[19:38:20]A6 : 0x00000020 A7 : 0x3fff6708 A8 : 0xad004136 A9 : 0x00000000
[19:38:20]A10 : 0x400e4290 A11 : 0xf6c00000 A12 : 0x00000001 A13 : 0x3ffb856c
[19:38:20]A14 : 0x006d305b A15 : 0x3ffc42f8 SAR : 0x0000000a EXCCAUSE: 0x0000001c
[19:38:20]EXCVADDR: 0xad00414e LBEG : 0x400844c5 LEND : 0x400844cd LCOUNT : 0x00000027
[19:38:20]
[19:38:20]
[19:38:20]Backtrace: 0x401b538c:0x3ffb2100 0x400f7035:0x3ffb2120 0x400dd4bc:0x3ffb2140 0x400e39ae:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:38:20]
[19:38:20]
[19:38:20]
[19:38:20]
[19:38:20]ELF file SHA256: 2f563b0e5
[19:38:20]
[19:38:20]E (4916) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:38:20]E (4924) esp_core_dump_elf: Elf write init failed!
[19:38:20]E (4928) esp_core_dump_common: Core dump write failed with error=-1
[19:38:20]Rebooting...
[19:38:20]ets Jul 29 2019 12:21:46
[19:38:20]
[19:38:20]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:38:20]configsip: 0, SPIWP:0xee
[19:38:20]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:38:20]mode:DIO, clock div:2
[19:38:20]load:0x3fff0030,len:4688
[19:38:20]load:0x40078000,len:15504
[19:38:20]load:0x40080400,len:4
[19:38:20]load:0x40080404,len:3196
[19:38:20]entry 0x400805a4
[19:38:20]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:20]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:20][I][logger:169]: Log initialized
[19:38:20][C][safe_mode:082]: There have been 4 suspected unsuccessful boot attempts
[19:38:20][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:20][I][app:049]: Running through setup()
[19:38:20][C][spi:040]: Running setup
[19:38:20][C][ledc.output:119]: Running setup
[19:38:20][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:20][D][esp32:117]: rtc: 0
[19:38:20][D][esp32:117]: rtc: 0
[19:38:20][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:20][D][esp32:117]: rtc: 0
[19:38:21][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:21][C][light:021]: Running setup for 'Display Backlight'
[19:38:21][D][light:052]: 'Display Backlight' Setting:
[19:38:21][D][light:058]: Color mode:
[19:38:21][D][light:065]: State: ON
[19:38:21][D][light:103]: Transition length: 1.0s
[19:38:21][C][wifi:048]: Running setup
[19:38:21][C][wifi:061]: Starting
[19:38:21][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:21][D][wifi:495]: Starting scan
[19:38:21][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:21][W][component:407]: display took a long time for an operation (81 ms)
[19:38:21][W][component:408]: Components should block for at most 30 ms
[19:38:24][D][wifi:516]: Found networks:
[19:38:25][D][wifi:639]: Disabling AP
[19:38:25][C][api:034]: Running setup
[19:38:25][W][component:279]: api set Warning flag: unspecified
[19:38:25][I][app:086]: setup() finished successfully!
[19:38:25][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:25][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:25][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:25][D][http_request.arduino:140]: Content-Length: 350
[19:38:25][D][online_image:175]: Starting download
[19:38:25][D][online_image:194]: Allocating PNG decoder
[19:38:25][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:25][I][online_i
[19:38:25]assert failed: remove_free_block tlsf.c:330 (prev && "prev_free field can not be null")
[19:38:25]
[19:38:25]
[19:38:25]Backtrace: 0x40083601:0x3ffbbc20 0x4008e33d:0x3ffbbc40 0x40094692:0x3ffbbc60 0x40093902:0x3ffbbd90 0x40093289:0x3ffbbdb0 0x400933f8:0x3ffbbdd0 0x40083af0:0x3ffbbdf0 0x40083b11:0x3ffbbe20 0x400837ed:0x3ffbbe40 0x4008381b:0x3ffbbe60 0x400946a5:0x3ffbbe80 0x40084805:0x3ffbbea0 0x4017bddb:0x3ffbbec0 0x4018ee13:0x3ffbbee0 0x40186fd1:0x3ffbbf00 0x4014ae96:0x3ffbbf20 0x4008ed42:0x3ffbbf50
[19:38:25]
[19:38:25]
[19:38:25]
[19:38:25]
[19:38:25]ELF file SHA256: 2f563b0e5
[19:38:25]
[19:38:25]E (5106) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:38:25]E (5115) esp_core_dump_elf: Elf write init failed!
[19:38:25]E (5119) esp_core_dump_common: Core dump write failed with error=-1
[19:38:25]Rebooting...
[19:38:25]ets Jul 29 2019 12:21:46
[19:38:25]
[19:38:25]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:38:25]configsip: 0, SPIWP:0xee
[19:38:25]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:38:25]mode:DIO, clock div:2
[19:38:25]load:0x3fff0030,len:4688
[19:38:25]load:0x40078000,len:15504
[19:38:25]load:0x40080400,len:4
[19:38:25]load:0x40080404,len:3196
[19:38:25]entry 0x400805a4
[19:38:25]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:25]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:25][I][logger:169]: Log initialized
[19:38:25][C][safe_mode:082]: There have been 5 suspected unsuccessful boot attempts
[19:38:25][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:25][I][app:049]: Running through setup()
[19:38:25][C][spi:040]: Running setup
[19:38:25][C][ledc.output:119]: Running setup
[19:38:25][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:25][D][esp32:117]: rtc: 0
[19:38:25][D][esp32:117]: rtc: 0
[19:38:25][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:25][D][esp32:117]: rtc: 0
[19:38:26][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:26][C][light:021]: Running setup for 'Display Backlight'
[19:38:26][D][light:052]: 'Display Backlight' Setting:
[19:38:26][D][light:058]: Color mode:
[19:38:26][D][light:065]: State: ON
[19:38:26][D][light:103]: Transition length: 1.0s
[19:38:26][C][wifi:048]: Running setup
[19:38:26][C][wifi:061]: Starting
[19:38:26][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:26][D][wifi:495]: Starting scan
[19:38:26][W][component:407]: display took a long time for an operation (81 ms)
[19:38:26][W][component:408]: Components should block for at most 30 ms
[19:38:26][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:29][D][wifi:516]: Found networks:
[19:38:30][D][wifi:639]: Disabling AP
[19:38:30][C][api:034]: Running setup
[19:38:30][W][component:279]: api set Warning flag: unspecified
[19:38:30][I][app:086]: setup() finished successfully!
[19:38:30][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:30][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:30][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:30][D][http_request.arduino:140]: Content-Length: 350
[19:38:30][D][online_image:175]: Starting download
[19:38:30][D][online_image:194]: Allocating PNG decoder
[19:38:30][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:30][I][online_image:212]: Downloading image (Size: 350)
[19:38:30][W][component:307]: wifi cleared Warning flag
[19:38:30][W][component:407]: wifi took a long time for an operation (96 ms)
[19:38:30][W][component:408]: Components should block for at most 30 ms
[19:38:30]Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled.
[19:38:30]
[19:38:30]Core 1 register dump:
[19:38:30]PC : 0x4008aeed PS : 0x00060230 A0 : 0x801ab18d A1 : 0x3ffb1b80
[19:38:30]A2 : 0x8b6f1e00 A3 : 0x8b6f1dfc A4 : 0x000000ff A5 : 0x0000ff00
[19:38:30]A6 : 0x00ff0000 A7 : 0xff000000 A8 : 0x00000000 A9 : 0x00000000
[19:38:30]A10 : 0x00000022 A11 : 0x00000080 A12 : 0x00000000 A13 : 0x3f402487
[19:38:30]A14 : 0x00000003 A15 : 0x00000004 SAR : 0x00000004 EXCCAUSE: 0x0000001c
[19:38:30]EXCVADDR: 0x8b6f1e00 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:38:30]
[19:38:30]
[19:38:30]Backtrace: 0x4008aeea:0x3ffb1b80 0x401ab18a:0x3ffb1b90 0x401a3379:0x3ffb1eb0 0x401a33b6:0x3ffb1f40 0x400e18de:0x3ffb1f80 0x400e1a8a:0x3ffb1fa0 0x400e1e36:0x3ffb1fe0 0x400eb4c2:0x3ffb20c0 0x400eb4ee:0x3ffb20f0 0x400e4309:0x3ffb2150 0x400e39d4:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:38:30]
[19:38:30]
[19:38:30]
[19:38:30]
[19:38:30]ELF file SHA256: 2f563b0e5
[19:38:30]
[19:38:30]E (4921) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:38:30]E (4929) esp_core_dump_elf: Elf write init failed!
[19:38:30]E (4934) esp_core_dump_common: Core dump write failed with error=-1
[19:38:30]Rebooting...
[19:38:30]ets Jul 29 2019 12:21:46
[19:38:30]
[19:38:30]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:38:30]configsip: 0, SPIWP:0xee
[19:38:30]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:38:30]mode:DIO, clock div:2
[19:38:30]load:0x3fff0030,len:4688
[19:38:30]load:0x40078000,len:15504
[19:38:30]load:0x40080400,len:4
[19:38:30]load:0x40080404,len:3196
[19:38:30]entry 0x400805a4
[19:38:31]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:31]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:31][I][logger:169]: Log initialized
[19:38:31][C][safe_mode:082]: There have been 6 suspected unsuccessful boot attempts
[19:38:31][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:31][I][app:049]: Running through setup()
[19:38:31][C][spi:040]: Running setup
[19:38:31][C][ledc.output:119]: Running setup
[19:38:31][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:31][D][esp32:117]: rtc: 0
[19:38:31][D][esp32:117]: rtc: 0
[19:38:31][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:31][D][esp32:117]: rtc: 0
[19:38:31][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:31][C][light:021]: Running setup for 'Display Backlight'
[19:38:31][D][light:052]: 'Display Backlight' Setting:
[19:38:31][D][light:058]: Color mode:
[19:38:31][D][light:065]: State: ON
[19:38:31][D][light:103]: Transition length: 1.0s
[19:38:31][C][wifi:048]: Running setup
[19:38:31][C][wifi:061]: Starting
[19:38:31][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:31][D][wifi:495]: Starting scan
[19:38:31][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:31][W][component:407]: display took a long time for an operation (81 ms)
[19:38:31][W][component:408]: Components should block for at most 30 ms
[19:38:34][D][wifi:516]: Found networks:
[19:38:35][D][wifi:639]: Disabling AP
[19:38:35][C][api:034]: Running setup
[19:38:35][W][component:279]: api set Warning flag: unspecified
[19:38:35][I][app:086]: setup() finished successfully!
[19:38:35][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:35][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:35][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:35][D][http_request.arduino:140]: Content-Length: 350
[19:38:35][D][online_image:175]: Starting download
[19:38:35][D][online_image:194]: Allocating PNG decoder
[19:38:35][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:35][I][online_image:212]: Downloading image (Size: 350)
[19:38:35][W][component:307]: wifi cleared Warning flag
[19:38:35][W][component:407]: wifi took a long time for an operation (98 ms)
[19:38:35][W][component:408]: Components should block for at most 30 ms
[19:38:35][E][online_image.png:086]: Error decoding image: Invalid state
[19:38:35][E][online_image:250]: Error when decoding image.
[19:38:35]
[19:38:35]assert failed: heap_caps_free heap_caps_base.c:69 (heap != NULL && "free() target pointer is outside heap areas")
[19:38:35]
[19:38:35]
[19:38:35]Backtrace: 0x40083601:0x3ffb1f10 0x4008e33d:0x3ffb1f30 0x40094692:0x3ffb1f50 0x400839b5:0x3ffb2080 0x400946c5:0x3ffb20a0 0x400f8c91:0x3ffb20c0 0x400e423e:0x3ffb20e0 0x400e424d:0x3ffb2100 0x401b403d:0x3ffb2120 0x400e377a:0x3ffb2140 0x400e39ec:0x3ffb2170 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:38:35]
[19:38:35]
[19:38:35]
[19:38:35]
[19:38:35]ELF file SHA256: 2f563b0e5
[19:38:35]
[19:38:35]E (4874) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:38:35]E (4882) esp_core_dump_elf: Elf write init failed!
[19:38:35]E (4886) esp_core_dump_common: Core dump write failed with error=-1
[19:38:35]Rebooting...
[19:38:35]ets Jul 29 2019 12:21:46
[19:38:35]
[19:38:35]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:38:35]configsip: 0, SPIWP:0xee
[19:38:35]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:38:35]mode:DIO, clock div:2
[19:38:35]load:0x3fff0030,len:4688
[19:38:35]load:0x40078000,len:15504
[19:38:35]load:0x40080400,len:4
[19:38:35]load:0x40080404,len:3196
[19:38:35]entry 0x400805a4
[19:38:36]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:36]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:36][I][logger:169]: Log initialized
[19:38:36][C][safe_mode:082]: There have been 7 suspected unsuccessful boot attempts
[19:38:36][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:36][I][app:049]: Running through setup()
[19:38:36][C][spi:040]: Running setup
[19:38:36][C][ledc.output:119]: Running setup
[19:38:36][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:36][D][esp32:117]: rtc: 0
[19:38:36][D][esp32:117]: rtc: 0
[19:38:36][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:36][D][esp32:117]: rtc: 0
[19:38:36][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:36][C][light:021]: Running setup for 'Display Backlight'
[19:38:36][D][light:052]: 'Display Backlight' Setting:
[19:38:36][D][light:058]: Color mode:
[19:38:36][D][light:065]: State: ON
[19:38:36][D][light:103]: Transition length: 1.0s
[19:38:36][C][wifi:048]: Running setup
[19:38:36][C][wifi:061]: Starting
[19:38:36][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:37][D][wifi:495]: Starting scan
[19:38:37][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:37][W][component:407]: display took a long time for an operation (81 ms)
[19:38:37][W][component:408]: Components should block for at most 30 ms
[19:38:39][D][wifi:516]: Found networks:
[19:38:40][C][api:034]: Running setup
[19:38:40][W][component:279]: api set Warning flag: unspecified
[19:38:40][I][app:086]: setup() finished successfully!
[19:38:40][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:40][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:40][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:40][D][http_request.arduino:140]: Content-Length: 350
[19:38:40][D][online_image:175]: Starting download
[19:38:40][D][online_image:194]: Allocating PNG decoder
[19:38:40][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:40]Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
[19:38:40]
[19:38:40]Core 1 register dump:
[19:38:40]PC : 0x401b5509 PS : 0x00060030 A0 : 0x800e4341 A1 : 0x3ffb1fd0
[19:38:40]A2 : 0x0000001b A3 : 0x3fff6078 A4 : 0x0000002f A5 : 0x3f40298c
[19:38:40]A6 : 0x3ffb1ff0 A7 : 0x0000ab78 A8 : 0x800e902e A9 : 0x3ffb1fb0
[19:38:40]A10 : 0x3ffc3f2c A11 : 0x3fff61bc A12 : 0x3ffb27f8 A13 : 0x3f40298c
[19:38:40]A14 : 0x3ffb1fd0 A15 : 0x00000028 SAR : 0x00000004 EXCCAUSE: 0x0000001d
[19:38:40]EXCVADDR: 0x00000093 LBEG : 0x4008aeed LEND : 0x4008aefd LCOUNT : 0xffffffff
[19:38:40]
[19:38:40]
[19:38:40]Backtrace: 0x401b5506:0x3ffb1fd0 0x400e433e:0x3ffb1ff0 0x400e40e3:0x3ffb2010 0x400ec0cd:0x3ffb2160 0x401b49cb:0x3ffb2180 0x401b444d:0x3ffb21a0 0x400e7ce4:0x3ffb21c0 0x401b473d:0x3ffb21e0 0x401b4815:0x3ffb2200 0x400e9259:0x3ffb2220 0x400ec1ce:0x3ffb2250 0x401001b0:0x3ffb2270 0x4008ed42:0x3ffb2290
[19:38:40]
[19:38:40]
[19:38:40]
[19:38:40]
[19:38:40]ELF file SHA256: 2f563b0e5
[19:38:40]
[19:38:40]E (4841) esp_core_dump_flash: Core dump flash config is corrupted! CRC=0x7bd5c66f instead of 0x0
[19:38:40]E (4849) esp_core_dump_elf: Elf write init failed!
[19:38:40]E (4853) esp_core_dump_common: Core dump write failed with error=-1
[19:38:40]Rebooting...
[19:38:40]ets Jul 29 2019 12:21:46
[19:38:40]
[19:38:40]rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
[19:38:40]configsip: 0, SPIWP:0xee
[19:38:40]clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
[19:38:40]mode:DIO, clock div:2
[19:38:40]load:0x3fff0030,len:4688
[19:38:40]load:0x40078000,len:15504
[19:38:40]load:0x40080400,len:4
[19:38:40]load:0x40080404,len:3196
[19:38:40]entry 0x400805a4
[19:38:41]E (533) esp_core_dump_flash: No co�fx dump partition found!
[19:38:41]E (533) esp_core_dump_flash: No core dump partition found!
[19:38:41][I][logger:169]: Log initialized
[19:38:41][C][safe_mode:082]: There have been 8 suspected unsuccessful boot attempts
[19:38:41][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:38:41][I][app:049]: Running through setup()
[19:38:41][C][spi:040]: Running setup
[19:38:41][C][ledc.output:119]: Running setup
[19:38:41][D][ili9xxx:034]: Setting up ILI9xxx
[19:38:41][D][esp32:117]: rtc: 0
[19:38:41][D][esp32:117]: rtc: 0
[19:38:41][D][spi_device:393]: mode 0, data_rate 40000kHz
[19:38:41][D][esp32:117]: rtc: 0
[19:38:41][D][ili9xxx:030]: Wrote MADCTL 0x08
[19:38:42][C][light:021]: Running setup for 'Display Backlight'
[19:38:42][D][light:052]: 'Display Backlight' Setting:
[19:38:42][D][light:058]: Color mode:
[19:38:42][D][light:065]: State: ON
[19:38:42][D][light:103]: Transition length: 1.0s
[19:38:42][C][wifi:048]: Running setup
[19:38:42][C][wifi:061]: Starting
[19:38:42][C][wifi:061]: Local MAC: EC:E3:34:B4:76:38
[19:38:42][D][wifi:495]: Starting scan
[19:38:42][W][component:279]: wifi set Warning flag: scanning for networks
[19:38:42][W][component:407]: display took a long time for an operation (81 ms)
[19:38:42][W][component:408]: Components should block for at most 30 ms
[19:38:44][D][wifi:516]: Found networks:
[19:38:45][C][api:034]: Running setup
[19:38:45][W][component:279]: api set Warning flag: unspecified
[19:38:45][I][app:086]: setup() finished successfully!
[19:38:45][I][online_image:109]: Updating image http://192.168.75.27:8123/local/test_qr_code.png
[19:38:45][D][http_request.arduino:134]: Received response header, name: etag, value: "1855d693626fd781-15e"
[19:38:45][D][http_request.arduino:134]: Received response header, name: last-modified, value: Sat, 26 Jul 2025 15:25:59 GMT
[19:38:45][D][http_request.arduino:140]: Content-Length: 350
[19:38:45][D][online_image:175]: Starting download
[19:38:45][D][online_image:194]: Allocating PNG decoder
[19:38:45][E][online_image.png:047]: Failed to allocate memory for PNGLE engine!
[19:38:45][E][online_image.png:066]: PNG decoder engine not initialized!
[19:38:45][W][component:307]: wifi cleared Warning flag
[19:38:45][W][component:407]: wifi took a long time for an operation (98 ms)
[19:38:45][W][component:408]: Components should block for at most 30 ms
[19:38:45][I][app:164]: ESPHome version 2025.7.2 compiled on Jul 26 2025, 19:31:30
[19:38:45][C][wifi:613]: WiFi:
[19:38:46][C][logger:246]: Logger:
[19:38:46][C][logger:246]: Max Level: DEBUG
[19:38:46][C][logger:246]: Initial Level: DEBUG
[19:38:46][C][logger:252]: Log Baud Rate: 115200
[19:38:46][C][logger:252]: Hardware UART: UART0
[19:38:46][C][logger:259]: Task Log Buffer Size: 768
[19:38:46][C][spi:069]: SPI bus:
[19:38:46][C][spi:070]: CLK Pin: GPIO18
[19:38:46][C][spi:071]: SDI Pin: GPIO19
[19:38:46][C][spi:072]: SDO Pin: GPIO23
[19:38:46][C][spi:077]: Using HW SPI: SPI
[19:38:46][C][ledc.output:151]: Output:
[19:38:46][C][ledc.output:152]: Pin GPIO16
[19:38:46][C][ledc.output:153]: Channel: 0
[19:38:46][C][ledc.output:153]: PWM Frequency: 1000.0 Hz
[19:38:46][C][ledc.output:153]: Phase angle: 0.0°
[19:38:46][C][ledc.output:153]: Bit depth: 16
[19:38:46][C][ili9xxx:091]: ili9xxx
[19:38:46][C][ili9xxx:091]: Rotations: 0 °
[19:38:46][C][ili9xxx:091]: Dimensions: 240px x 280px
[19:38:46][C][ili9xxx:092]: Width Offset: 0
[19:38:46][C][ili9xxx:092]: Height Offset: 20
[19:38:46][C][ili9xxx:104]: Color mode: 8bit 332 mode
[19:38:46][C][ili9xxx:110]: Data rate: 40MHz
[19:38:46][C][ili9xxx:112]: Reset Pin: GPIO21
[19:38:46][C][ili9xxx:113]: CS Pin: GPIO5
[19:38:46][C][ili9xxx:114]: DC Pin: GPIO22
[19:38:46][C][ili9xxx:116]: Color order: BGR
[19:38:46][C][ili9xxx:116]: Swap_xy: NO
[19:38:46][C][ili9xxx:116]: Mirror_x: NO
[19:38:46][C][ili9xxx:116]: Mirror_y: NO
[19:38:46][C][ili9xxx:116]: Invert colors: YES
[19:38:46][C][ili9xxx:128]: Update Interval: 1.0s
[19:38:46][C][light:092]: Light 'Display Backlight'
[19:38:46][C][light:094]: Default Transition Length: 1.0s
[19:38:46][C][light:094]: Gamma Correct: 2.80
[19:38:46][C][captive_portal:099]: Captive Portal:
[19:38:46][C][esphome.ota:073]: Over-The-Air updates:
[19:38:46][C][esphome.ota:073]: Address: display-test-eps32.local:3232
[19:38:46][C][esphome.ota:073]: Version: 2
[19:38:46][C][esphome.ota:080]: Password configured
[19:38:46][C][safe_mode:018]: Safe Mode:
[19:38:46][C][safe_mode:019]: Boot considered successful after 60 seconds
[19:38:46][C][safe_mode:019]: Invoke after 10 boot attempts
[19:38:46][C][safe_mode:019]: Remain for 300 seconds
[19:38:46][W][safe_mode:030]: Last reset occurred too quickly; will be invoked in 2 restarts
[19:38:46][C][web_server.ota:224]: Web Server OTA
[19:38:46][C][api:207]: API Server:
[19:38:46][C][api:207]: Address: display-test-eps32.local:6053
[19:38:46][C][api:212]: Using noise encryption: YES
[19:38:46][C][http_request:013]: HTTP Request:
[19:38:46][C][http_request:013]: Timeout: 50000ms
[19:38:46][C][http_request:013]: User-Agent: ESPHome/2025.7.2 (https://esphome.io)
[19:38:46][C][http_request:013]: Follow redirects: YES
[19:38:46][C][http_request:013]: Redirect limit: 3
[19:38:46][C][mdns:122]: mDNS:
[19:38:46][C][mdns:122]: Hostname: display-test-eps32
[19:38:46][C][homeassistant.sensor:030]: Homeassistant Sensor 'Test'
[19:38:46][C][homeassistant.sensor:030]: State Class: ''
[19:38:46][C][homeassistant.sensor:030]: Unit of Measurement: ''
[19:38:46][C][homeassistant.sensor:030]: Accuracy Decimals: 1
[19:38:46][C][homeassistant.sensor:031]: Entity ID: 'sensor.power_meter_og_wirkleistung'
[19:38:46][C][debug:018]: Debug component:
[19:38:46][C][debug:020]: Device info 'Device Info'
[19:38:46][C][debug:020]: Icon: 'mdi:chip'
[19:38:46][D][debug:033]: ESPHome version 2025.7.2
[19:38:46][D][debug:037]: Free Heap Size: 78264 bytes
[19:38:46][D][debug:161]: Flash Chip: Size=4096kB Speed=40MHz Mode=DIO
[19:38:46][D][debug:182]: Chip: Model=ESP32, Features=2.4GHz WiFi, BLE, BT, Cores=2, Revision=301
[19:38:46][D][debug:191]: CPU Frequency: 160 MHz
[19:38:46][D][debug:196]: Framework: Arduino
[19:38:46][D][debug:206]: ESP-IDF Version: v5.3.2-584-g489d7a2b3a-dirty
[19:38:46][D][debug:211]: EFuse MAC: EC:E3:34:B4:76:38
[19:38:46][D][debug:079]: Reset Reason: exception/panic
[19:38:46][D][debug:107]: Wakeup Reason: undefined
[19:38:46][D][text_sensor:069]: 'Device Info': Sending state '2025.7.2|Flash: 4096kB Speed:40MHz Mode:DIO|Chip: ESP32 Features:2.4GHz WiFi, BLE, BT, Cores:2 Revision:301|CPU Frequency: 160 MHz|Framework: Arduino|ESP-IDF: v5.3.2-584-g489d7a2b3a-dirty|EFuse MAC: EC:E3:34:B4:76:38|Reset: exception/panic|Wakeup: undefi'
[19:38:46][D][debug:079]: Reset Reason: exception/panic
[19:38:46][D][text_sensor:069]: 'Reset Reason': Sending state 'exception/panic'
[19:38:46][C][debug:112]: Partition table:
[19:38:46][C][debug:112]: Name Type Subtype Address Size
[19:38:46][C][debug:119]: nvs 1 2 0x00009000 0x00005000
[19:38:46][C][debug:119]: otadata 1 0 0x0000E000 0x00002000
[19:38:46][C][debug:119]: app0 0 16 0x00010000 0x001C0000
[19:38:46][C][debug:119]: app1 0 17 0x001D0000 0x001C0000
[19:38:46][C][debug:119]: eeprom 1 153 0x00390000 0x00001000
[19:38:46][C][debug:119]: spiffs 1 130 0x00391000 0x0000F000
[19:39:41][I][safe_mode:042]: Boot seems successful; resetting boot loop counter
[19:39:41][D][esp32.preferences:142]: Writing 1 items: 0 cached, 1 written, 0 failed
[19:39:50][D][api:146]: Accept 192.168.75.27
[19:39:50][W][component:307]: api cleared Warning flag
[19:39:50][W][component:407]: api took a long time for an operation (56 ms)
[19:39:50][W][component:408]: Components should block for at most 30 ms
[19:39:50][D][api.connection:1466]: Home Assistant 2025.5.3 (192.168.75.27) connected
[19:39:50][D][homeassistant.sensor:024]: 'sensor.power_meter_og_wirkleistung': Got state 2.00
[19:39:50][D][sensor:104]: 'Test': Sending state 2.00000 with 1 decimals of accuracy
Interessant ist auch, dass manchmal im Safemode die Ausgabe des HA Sensors auf dem Display noch geht und manchmal nicht.
Ich werde mir wahrscheinlich zum Testen mal ein Board mit WROVER Chip und PSRAM besorgen, allerdings bräuchte ich im Endergebnis den Formfaktor des D1, da das Ganze in eine Normale 60er Einbaudose in die Wand passen soll.
Vielleicht hat ja jemand eine Idee, was ich noch testen kann, mit dem aktuellen WROOM Modul.