Files
meshtastic_firmware/variants/nrf54l15/nrf54l15.ini
T
e10e13226d nrf54l15: fix SHT4x libdep -- arduino-sht, not Adafruit_SHT4X (#10515)
SHTXXSensor (the SHT4x driver) includes <SHTSensor.h>, gated by
__has_include(<SHTSensor.h>). That header ships in Sensirion/arduino-sht.
Adafruit_SHT4X ships Adafruit_SHT4X.h and has no consumer anywhere in
src/, so the SHT40 driver was silently excluded from the build -- the
nRF54L15 variant could not read an SHT4x sensor as committed in #10193.

Replace the dead Adafruit_SHT4X libdep with arduino-sht v1.2.6.
Validated on nRF54L15-DK: SHT40-AD1B @0x44, 24.3h soak, 0 reboots,
temperature/humidity telemetry stable end-to-end.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
2026-05-21 11:00:10 -05:00

78 lines
2.6 KiB
INI

[nrf54l15_base]
platform = https://github.com/Seeed-Studio/platform-seeedboards.git
framework = zephyr
extends = arduino_base
build_type = release
build_flags =
${arduino_base.build_flags}
-Isrc/platform/nrf54l15
-DMESHTASTIC_EXCLUDE_AUDIO=1
-DMESHTASTIC_EXCLUDE_GPS=1
-DMESHTASTIC_EXCLUDE_MQTT=1
-DHAS_WIRE=1
-DHAS_SENSOR=1
-DHAS_BUTTON=0
-DHAS_TELEMETRY=1
-DMESHTASTIC_EXCLUDE_PAXCOUNTER=1
-DARDUINO=100
-DMESHTASTIC_EXCLUDE_ACCELEROMETER=1
-DMAX_NUM_NODES=40
-fpermissive
# Libraries that Zephyr LDF misses; add include paths explicitly
-I.pio/libdeps/${PIOENV}/Crypto
-I.pio/libdeps/${PIOENV}/ArduinoThread
-I".pio/libdeps/${PIOENV}/ESP8266 and ESP32 OLED driver for SSD1306 displays/src"
-I.pio/libdeps/${PIOENV}/OneButton/src
-I.pio/libdeps/${PIOENV}/arduino-fsm
-I.pio/libdeps/${PIOENV}/TinyGPSPlus/src
-I.pio/libdeps/${PIOENV}/ErriezCRC32/src
-I.pio/libdeps/${PIOENV}/NonBlockingRTTTL/src
-I.pio/libdeps/${PIOENV}/RadioLib/src
build_src_filter =
${arduino_base.build_src_filter}
-<platform/esp32/>
-<platform/stm32wl>
-<platform/nrf52/>
-<platform/rp2xx0>
-<nimble/>
-<mesh/wifi/>
-<mesh/api/>
-<mesh/http/>
-<modules/esp32>
-<mesh/eth/>
-<mesh/raspihttp>
-<serialization/>
-<mqtt/>
-<motion/>
+<platform/nrf54l15/>
lib_compat_mode = off
lib_deps =
${arduino_base.lib_deps}
${radiolib_base.lib_deps}
rweather/Crypto@0.4.0
; Cherry-picked sensor libs from environmental_base. The full
; environmental_base pulls Adafruit_SSD1306 / GFX which need Arduino
; pin macros (digitalPinToPort / portOutputRegister) that the Zephyr
; Arduino shim does not implement.
https://github.com/adafruit/Adafruit_BusIO/archive/refs/tags/1.17.4.zip
https://github.com/adafruit/Adafruit_Sensor/archive/refs/tags/1.1.15.zip
https://github.com/adafruit/Adafruit_BMP280_Library/archive/refs/tags/3.0.0.zip
https://github.com/adafruit/Adafruit_BME280_Library/archive/refs/tags/2.3.0.zip
https://github.com/adafruit/Adafruit_INA260/archive/refs/tags/1.5.3.zip
https://github.com/adafruit/Adafruit_INA219/archive/refs/tags/1.2.3.zip
https://github.com/RobTillaart/INA3221_RT/archive/refs/tags/0.4.2.zip
https://github.com/RobTillaart/INA226/archive/refs/tags/0.6.6.zip
; SHTXXSensor gates on __has_include(<SHTSensor.h>), a header shipped by
; Sensirion/arduino-sht. Adafruit_SHT4X ships Adafruit_SHT4X.h instead and
; has no consumer in src/, so it left the SHT40 driver out of the build.
https://github.com/Sensirion/arduino-sht/archive/refs/tags/v1.2.6.zip
lib_ignore =
BluetoothOTA
lvgl
Adafruit_nRFCrypto