mirror of
https://github.com/meshtastic/firmware.git
synced 2026-09-20 05:18:54 -04:00
boards/seeed-sensecap-indicator.json was the only board file carrying "f_boot": "120000000L". Under platformio/espressif32 6.x that key only selected a prebuilt bootloader image. Under pioarduino HybridCompile, which this board uses since it moved to the 3.3.11-based core (#11238), f_boot becomes the compile-time clock for both flash and PSRAM, so every 2.8 build of the Indicator is compiled with CONFIG_ESPTOOLPY_FLASHFREQ_120M, CONFIG_SPI_FLASH_HPM_ON and CONFIG_SPIRAM_SPEED_120M (octal PSRAM at 120 MHz is an experimental ESP-IDF feature). The device hangs in early flash/PSRAM init before the boot watchdog is disarmed and reset-loops with RTCWDT_RTC_RST and no bootloader output, also after a full erase and install. Without the key the build falls back to f_flash (80 MHz) like every other ESP32-S3 board, reports "80MHz for both Flash and PSRAM", and produces a bootloader byte-identical to the T-Deck's 2.8 bootloader. Fixes #11691
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"build": {
|
|
"arduino": {
|
|
"ldscript": "esp32s3_out.ld",
|
|
"partitions": "partition-table-8MB.csv",
|
|
"memory_type": "qio_opi"
|
|
},
|
|
"core": "esp32",
|
|
"extra_flags": [
|
|
"-DBOARD_HAS_PSRAM",
|
|
"-DARDUINO_USB_CDC_ON_BOOT=0",
|
|
"-DARDUINO_USB_MODE=1",
|
|
"-DARDUINO_RUNNING_CORE=1",
|
|
"-DARDUINO_EVENT_RUNNING_CORE=1"
|
|
],
|
|
"f_cpu": "240000000L",
|
|
"f_flash": "80000000L",
|
|
"boot": "qio",
|
|
"flash_mode": "qio",
|
|
"psram_type": "opi",
|
|
"hwids": [["0x1A86", "0x7523"]],
|
|
"mcu": "esp32s3",
|
|
"variant": "esp32s3"
|
|
},
|
|
"connectivity": ["wifi", "bluetooth", "lora"],
|
|
"debug": {
|
|
"default_tool": "esp-builtin",
|
|
"onboard_tools": ["esp-builtin"],
|
|
"openocd_target": "esp32s3.cfg"
|
|
},
|
|
"frameworks": ["arduino"],
|
|
"name": "Seeed Studio SenseCAP Indicator",
|
|
"upload": {
|
|
"flash_size": "8MB",
|
|
"maximum_ram_size": 327680,
|
|
"maximum_size": 8388608,
|
|
"require_upload_port": false,
|
|
"use_1200bps_touch": true,
|
|
"wait_for_upload_port": false,
|
|
"speed": 921600
|
|
},
|
|
"url": "https://www.seeedstudio.com/Indicator-for-Meshtastic.html",
|
|
"vendor": "Seeed Studio"
|
|
}
|