恶魔之眼 Lite 固件 全量烧录包
固件版本: v0.1.8 (BUILD 18)
打包日期: 2026-09-05

【方式一】分片烧录 (esptool, 串口 460800):
python -m esptool --chip esp32s3 -b 460800 \
  --before default_reset --after hard_reset write_flash \
  --flash_mode dio --flash_freq 80m --flash_size 16MB \
  0x0       bootloader.bin \
  0x8000    partition-table.bin \
  0xf000    ota_data_initial.bin \
  0x20000   EELite.bin \
  0xa20000  storage.bin

【方式二】合成单文件烧录 (整片 16MB, 一个文件烧 0x0):
python -m esptool --chip esp32s3 -b 460800 \
  --before default_reset --after hard_reset write_flash \
  --flash_mode dio --flash_freq 80m --flash_size 16MB \
  0x0 EELite-merged.bin

分区布局 (partitions.csv):
  nvs 0x6000 | otadata 0x2000 | phy_init 0x1000
  factory 5M @0x20000 | ota_0 5M @0x520000
  storage (spiffs) 0x5D0000 @0xa20000
