beta-0.1.31
Pre-release
Pre-release
SlopOS T-Deck Firmware — beta-0.1.31
Flash with esptool
# Full flash (first install):
esptool.py --chip esp32s3 --port /dev/ttyACM0 write_flash 0x0 firmware-merged.bin
# App update (keep settings):
esptool.py --chip esp32s3 --port /dev/ttyACM0 \\
write_flash 0x10000 firmware.binWeb Flasher
Use the manifest at webflasher/manifest.json with esptool.js.
| File | Use |
|---|---|
firmware.bin |
App only (flash at 0x10000) |
firmware-merged.bin |
Full flash (flash at 0x0) |
webflasher/slopos-tdeck-firmware.bin |
App update |
webflasher/slopos-tdeck-full.bin |
Full flash |
webflasher/slopos-tdeck-bootloader.bin |
Bootloader |
webflasher/slopos-tdeck-partitions.bin |
Partition table |
webflasher/manifest.json |
Web flasher manifest |
What's Changed
- fix: reduce trackball sensitivity and improve left direction reliability by @gadgethd in #20
- feat: make chat screen navigable via trackball with selection highlights by @gadgethd in #21
- fix: preserve DIO bootloader mode for web flasher compatibility by @gadgethd in #22
- feat: onboarding wizard with 3-step setup (name, time, frequency) by @gadgethd in #23
- feat: turn off keyboard backlight when display auto-offs by @gadgethd in #24
- feat: add emoji support with LVGL font fallback and emoji picker by @gadgethd in #25
- feat: persist channels and messages across reboots and power loss by @gadgethd in #26
- fix: delay USB CDC init to avoid power cycle needed after web flash by @gadgethd in #27
Full Changelog: beta-0.1.30...beta-0.1.31