mirror of
https://github.com/meshtastic/firmware.git
synced 2026-09-20 21:39:01 -04:00
Audit of the custom_meshtastic_* manifest on the variants backing the newest boards, against the protobuf HardwareModel enum, the compiled HW_VENDOR, the board flash size and the artwork actually published by the web flasher. No support flag changes here - actively_supported is left exactly as each variant already had it. ThinkNode M9 had no HW_VENDOR arm, so every M9 has been reporting PRIVATE_HW while its manifest advertised 131; add the mapping and rename the slug to the enum name (THINKNODE_M9) it is meant to mirror. Seeed SenseCAP Mesh-Tracker X1 moves from the PR matrix to release, and its images entry now points at seeed_mesh_tracker_x1.svg, which is what the flasher actually ships - the hyphenated name resolved to nothing. T-Beam BPF, T-Beam 1W and Heltec Wireless Tracker V2 declared the architecture as "esp32s3"; the value is copied verbatim into the manifest, and the flash flow matches on the normalized "esp32-s3". T-Beam BPF and M5Stack Unit C6L both build default_16MB.csv on 16 MB flash but declared no partition scheme, which leaves the flasher on the 4 MB fallback offsets for a legacy clean install. Meshnology W10 and W12 gain the artwork and vendor tag that already exist for them.
31 lines
925 B
INI
31 lines
925 B
INI
[env:m5stack-unitc6l]
|
|
custom_meshtastic_hw_model = 111
|
|
custom_meshtastic_hw_model_slug = M5STACK_C6L
|
|
custom_meshtastic_architecture = esp32-c6
|
|
custom_meshtastic_actively_supported = true
|
|
custom_meshtastic_support_level = 1
|
|
custom_meshtastic_display_name = M5Stack Unit C6L
|
|
custom_meshtastic_images = m5_c6l.svg
|
|
custom_meshtastic_tags = M5Stack
|
|
custom_meshtastic_partition_scheme = 16MB
|
|
|
|
extends = esp32c6_base
|
|
board_level = release
|
|
board = esp32-c6-devkitc-1
|
|
board_upload.flash_size = 16MB
|
|
board_build.partitions = default_16MB.csv
|
|
;OpenOCD flash method
|
|
;upload_protocol = esp-builtin
|
|
;Normal method
|
|
upload_protocol = esptool
|
|
;upload_port = /dev/ttyACM2
|
|
build_flags =
|
|
${esp32c6_base.build_flags}
|
|
-D M5STACK_UNITC6L
|
|
-I variants/esp32c6/m5stack_unitc6l
|
|
-DARDUINO_USB_CDC_ON_BOOT=1
|
|
-DARDUINO_USB_MODE=1
|
|
monitor_speed=115200
|
|
build_src_filter =
|
|
${esp32c6_base.build_src_filter} +<../variants/esp32c6/m5stack_unitc6l>
|