Add portal web simulator, SPI bridges, and Pico firmware updates.

Bring the five-panel hex portal online with a browser 3D/schematic preview, Pi SPI backends, and renamed multi-panel Pico UDP firmware.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-30 14:54:51 +12:00
parent d5cab2efdf
commit 5094c7bcee
78 changed files with 62251 additions and 832 deletions

View File

@@ -3,7 +3,7 @@
# make deploy Build and flash panel firmware over USB
# make build Build only
.PHONY: build deploy flash upload monitor clean help
.PHONY: build deploy flash upload reset monitor clean help
_PANEL_MAKE_FLAGS :=
ifdef PANEL_ID
@@ -12,15 +12,15 @@ endif
ifdef NO_DHCP
_PANEL_MAKE_FLAGS += NO_DHCP=$(NO_DHCP)
endif
ifdef NUM_LEDS
_PANEL_MAKE_FLAGS += NUM_LEDS=$(NUM_LEDS)
endif
ifdef WS2812_PIN
_PANEL_MAKE_FLAGS += WS2812_PIN=$(WS2812_PIN)
endif
ifdef WS2812_PIN1
_PANEL_MAKE_FLAGS += WS2812_PIN1=$(WS2812_PIN1)
endif
help:
@$(MAKE) -C firmware/panel help
@$(MAKE) -C firmware/pico help
build deploy flash upload monitor clean:
@$(MAKE) -C firmware/panel $(MAKECMDGOALS) $(_PANEL_MAKE_FLAGS)
build deploy flash upload reset monitor clean:
@$(MAKE) -C firmware/pico $(MAKECMDGOALS) $(_PANEL_MAKE_FLAGS)