velxio/backend/app/services
David Montero Crespo 2b528bfefc fix(esp32): render GxEPD2 ePaper panels (WS plumbing + native rotation)
ESP32 ePaper examples (e.g. epaper-2in9-esp32-weather) rendered as a blank
white panel. Two bugs, both above the SPI layer:

1. The worker's epaper_update event nested its payload under 'data', unlike
   every other (flat) worker event. The backend qemu_callback re-wraps the
   post-'type' payload under 'data', so the frontend received
   msg.data.data.component_id (undefined) and EPaperPart bailed on
   id !== componentId, so paintFrame/putImageData never ran. Emit it flat.

2. Ssd168xEpaperSlave was sized to the display dims (296x128), but GxEPD2
   with setRotation(1) writes the controller's NATIVE RAM (128x296). The
   _y < height bound dropped rows 128-295 (half the image) and compose
   never rotated. Size RAM to the longer side, compose in the native
   active-window geometry (0x44/0x45), then rotate to the display
   orientation (inverse of Adafruit_GFX rotation 1). Add is_bwr (from
   panel_kind): B/W panels init the 0x26 plane white and compose
   white-only-if-both (GDEY029T94 mirrors the image into 0x26); tri-colour
   panels keep red init 0x00 and red-wins.
2026-06-04 23:15:37 -03:00
..
boot_images feat(pi): Phase 3.3 — Pi Zero / Pi 1 / Pi 2 armhf simulators 2026-05-18 23:23:48 +02:00
esp-idf-template fix(espidf): drop CONFIGURE_DEPENDS from main/ glob — script-mode incompat 2026-05-23 17:49:14 +02:00
picow_net
__init__.py
arduino_cli.py feat: STM32 (Blue Pill / Black Pill) QEMU emulation + Pro board gating 2026-05-30 19:06:14 -03:00
asm8080.py feat(chips): programmable retro CPU chips with external ROM 2026-05-18 23:38:18 -03:00
asmz80.py feat(chips): programmable Z80 chip + Larson scanner example 2026-05-19 00:21:08 -03:00
board_access.py feat: STM32 (Blue Pill / Black Pill) QEMU emulation + Pro board gating 2026-05-30 19:06:14 -03:00
c_compile.py fix(c-compile): drop --code-loc 0x100 that overwrote SDCC's crt0 init (Z80) 2026-06-03 20:11:01 +02:00
chip_compile.py
esp32_flash_image.py fix(esp32): trim flash image before serializing, pad on QEMU attach 2026-05-08 14:36:34 -03:00
esp32_i2c_slaves.py feat(i2c): cross-board bridging across all velxio boards (AVR/RP2040/ESP32 xtensa+riscv) 2026-05-12 17:51:39 -03:00
esp32_lib_bridge.py feat(compile): ESP-IDF compile options + request dedup 2026-05-18 21:50:45 -03:00
esp32_lib_manager.py fix(esp32): resolve libqemu path on every call + read VELXIO_QEMU_PATH 2026-05-27 03:44:09 +02:00
esp32_signals.py fix(esp32): LEDC signal IDs are 71-86 per ESP32 TRM, not 72-87 2026-05-17 05:42:52 +02:00
esp32_spi_slaves.py fix(esp32): render GxEPD2 ePaper panels (WS plumbing + native rotation) 2026-06-04 23:15:37 -03:00
esp32_worker.py fix(esp32): render GxEPD2 ePaper panels (WS plumbing + native rotation) 2026-06-04 23:15:37 -03:00
esp_qemu_manager.py
espidf_compiler.py fix(espidf): accurate core-lib warnings + gateway open hook 2026-05-29 20:38:03 +02:00
gpio_shim.py
picow_net_bridge.py
qemu_manager.py feat: STM32 (Blue Pill / Black Pill) QEMU emulation + Pro board gating 2026-05-30 19:06:14 -03:00
rom_compile.py feat(chips): C-to-Z80 compile via SDCC + LED chaser example 2026-05-19 00:31:10 -03:00
signal_router.py feat(esp32): SignalRouter — model the GPIO Matrix as first-class 2026-05-17 05:00:53 +02:00
stm32_lib_manager.py feat(boards): add 6 STM32 boards (F4 Discovery, Olimex H405, Netduino 2/+2, Pill variants) 2026-05-31 03:19:26 -03:00
stm32_worker.py feat: STM32 (Blue Pill / Black Pill) QEMU emulation + Pro board gating 2026-05-30 19:06:14 -03:00
wasm_chip_runtime.py
wasm_chip_slave.py
wifi_status_parser.py