Adds four MESHTASTIC_EXCLUDE_* flags to stm32_base, applying them to
every stm32wl variant (rak3172, wio-e5, russell, milesight_gs301,
CDEBYTE_E77-MBL):
- PKT_HISTORY_HASH: mirrors the accepted nRF52 precedent
(variants/nrf52840/nrf52.ini) - drops PacketHistory's hash index;
the O(n) fallback is negligible given stm32wl's small node table.
No feature loss.
- POWER_TELEMETRY: only affects external power-monitor ICs
(INA219/INA260 etc.) via PowerTelemetryModule; internal battery ADC
reading (src/Power.cpp) is a separate, ungated code path and is
unaffected. No current stm32wl variant wires up external
power-monitor hardware.
- RANGETEST: real feature loss on wio-e5 specifically, the only
stm32wl variant with GPS enabled (RangeTest requires GPS to run at
all, so it was already dead on every other variant).
- WAYPOINT: real feature loss on rak3172/wio-e5 (russell already
excluded this individually; that duplicate is removed here since
stm32_base now covers it).
Measured on wio-e5 against upstream/develop @ 7a25ffd0a: 2,768 bytes
flash saved (240,648 -> 237,880), 260 bytes RAM saved. Sanity-built
russell and rak3172 to confirm no regressions from the russell
dedup.
Assisted-by: Claude Sonnet 5 <noreply@anthropic.com>
Signed-off-by: Andrew Yong <me@ndoo.sg>
Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
30 lines
1.2 KiB
INI
30 lines
1.2 KiB
INI
; Russell is a board designed to mount on an ER34615/IFR32700 cell and go Up! on a balloon
|
|
; Hardware repository: https://github.com/Meshtastic-Malaysia/russell
|
|
; - RAK3172 STM32WLE5CCU6 MCU + integrated SX1262 LoRa
|
|
; - CDtop CD-PA1010D GPS
|
|
; - Bosch Sensortec BME280 sensor
|
|
; - Consonance CN3158 LiFePO4 solar charger
|
|
[env:russell]
|
|
extends = stm32_base
|
|
board = wiscore_rak3172
|
|
board_level = extra
|
|
board_upload.maximum_size = 247808 ; reserve the last 14KB for filesystem (reduced from 20KB in LittleFS.cpp)
|
|
build_flags =
|
|
${stm32_base.build_flags}
|
|
-Ivariants/stm32/russell
|
|
-DPRIVATE_HW
|
|
-DMESHTASTIC_EXCLUDE_AIR_QUALITY_SENSOR=1
|
|
-DMESHTASTIC_EXCLUDE_DETECTIONSENSOR=1
|
|
-DMESHTASTIC_EXCLUDE_EXTERNALNOTIFICATION=1
|
|
-DMESHTASTIC_EXCLUDE_POWERSTRESS=1
|
|
-DMESHTASTIC_EXCLUDE_NEIGHBORINFO=1
|
|
-DMESHTASTIC_EXCLUDE_TRACEROUTE=1
|
|
lib_deps =
|
|
${stm32_base.lib_deps}
|
|
# renovate: datasource=custom.pio depName=Adafruit BME280 packageName=adafruit/library/Adafruit BME280 Library
|
|
adafruit/Adafruit BME280 Library@2.3.0
|
|
# renovate: datasource=custom.pio depName=Adafruit_BME680 packageName=adafruit/library/Adafruit BME680 Library
|
|
adafruit/Adafruit BME680 Library@2.0.6
|
|
|
|
upload_port = stlink
|