meshtastic-firmware/platformio.ini

164 wiersze
6.1 KiB
INI
Czysty Zwykły widok Historia

; PlatformIO Project Configuration File
; https://docs.platformio.org/page/projectconf.html
[platformio]
2021-12-26 17:08:49 +00:00
default_envs = tbeam
2021-01-10 01:44:20 +00:00
;default_envs = tbeam0.7
;default_envs = heltec-v1
2022-01-24 17:33:31 +00:00
;default_envs = heltec-v2.0
;default_envs = heltec-v2.1
2021-01-10 01:44:20 +00:00
;default_envs = tlora-v1
2022-01-04 00:18:01 +00:00
;default_envs = tlora-v1
2021-03-21 03:47:48 +00:00
;default_envs = tlora_v1_3
2021-01-10 01:44:20 +00:00
;default_envs = tlora-v2
;default_envs = tlora-v2-1-1.6
2021-01-10 01:44:20 +00:00
;default_envs = lora-relay-v1 # nrf board
;default_envs = t-echo
;default_envs = nrf52840dk-geeksville
;default_envs = native # lora-relay-v1 # nrf52840dk-geeksville # linux # or if you'd like to change the default to something like lora-relay-v1 put that here
;default_envs = nano-g1
;default_envs = pca10059_diy_eink
2021-12-26 17:08:49 +00:00
;default_envs = meshtastic-diy-v1
2022-01-23 20:44:58 +00:00
;default_envs = meshtastic-diy-v1.1
extra_configs = variants/*/platformio.ini
[env]
extra_scripts = bin/platformio-custom.py
; note: we add src to our include search path so that lmic_project_config can override
; note: TINYGPS_OPTION_NO_CUSTOM_FIELDS is VERY important. We don't use custom fields and somewhere in that pile
; of code is a heap corruption bug!
; FIXME: fix lib/BluetoothOTA dependency back on src/ so we can remove -Isrc
2021-02-22 04:57:03 +00:00
build_flags = -Wno-missing-field-initializers
-Wno-format
2021-04-01 06:05:27 +00:00
-Isrc -Isrc/mesh -Isrc/gps -Isrc/buzz -Wl,-Map,.pio/build/output.map
-DUSE_THREAD_NAMES
-DTINYGPS_OPTION_NO_CUSTOM_FIELDS
2022-05-06 20:16:51 +00:00
-DPB_ENABLE_MALLOC=1
2020-04-22 21:58:35 +00:00
monitor_speed = 921600
lib_deps =
2022-04-11 02:15:10 +00:00
https://github.com/meshtastic/esp8266-oled-ssd1306.git#53580644255b48ebb7a737343c6b4e71c7e11cf2 ; ESP8266_SSD1306
2022-03-09 22:03:30 +00:00
mathertel/OneButton@^2.0.3 ; OneButton library for non-blocking button debounce
1202 ; CRC32, explicitly needed because dependency is missing in the ble ota update lib
https://github.com/meshtastic/arduino-fsm.git
2022-04-06 07:18:55 +00:00
https://github.com/meshtastic/TinyGPSPlus.git
2020-09-04 22:03:22 +00:00
Wire ; explicitly needed here because the AXP202 library forgets to add it
2020-09-05 00:23:17 +00:00
SPI
https://github.com/meshtastic/ArduinoThread.git#72921ac222eed6f526ba1682023cee290d9aa1b3
2022-03-09 21:37:24 +00:00
nanopb/Nanopb@^0.4.6
2022-01-23 08:29:16 +00:00
; Used for the code analysis in PIO Home / Inspect
check_tool = cppcheck
2022-01-23 08:29:16 +00:00
check_skip_packages = yes
; Common settings for conventional (non Portduino) Arduino targets
2020-09-04 22:03:22 +00:00
[arduino_base]
framework = arduino
lib_deps =
${env.lib_deps}
; Portduino is using meshtastic fork for now
https://github.com/jgromes/RadioLib.git#3df3b092ebf412bd0b26524e7b296733bd6a62f7
2021-05-03 07:38:14 +00:00
build_flags = ${env.build_flags} -Os
# -DRADIOLIB_GODMODE
2022-05-17 09:14:21 +00:00
build_src_filter = ${env.build_src_filter} -<portduino/>
; Common libs for communicating over TCP/IP networks such as MQTT
[networking_base]
lib_deps =
PubSubClient
meshtastic/json11@^1.0.2
; Common libs for environmental measurements in telemetry module
; (not included in native / portduino)
[environmental_base]
lib_deps =
adafruit/Adafruit BusIO@^1.11.4
adafruit/DHT sensor library@^1.4.1
adafruit/Adafruit Unified Sensor@^1.1.4
paulstoffregen/OneWire@^2.3.5
robtillaart/DS18B20@^0.1.11
adafruit/Adafruit BME280 Library@^2.2.2
2022-01-25 20:22:48 +00:00
adafruit/Adafruit BME680 Library@^2.0.1
adafruit/Adafruit MCP9808 Library@^2.0.0
; Common settings for ESP targes, mixin with extends = esp32_base
[esp32_base]
2020-09-04 22:03:22 +00:00
extends = arduino_base
platform = espressif32@3.5.0
2022-05-17 09:14:21 +00:00
build_src_filter =
${arduino_base.build_src_filter} -<nrf52/>
upload_speed = 921600
debug_init_break = tbreak setup
2022-01-05 01:58:56 +00:00
# Remove -DMYNEWT_VAL_BLE_HS_LOG_LVL=LOG_LEVEL_CRITICAL for low level BLE logging.
# See library directory for BLE logging possible values: .pio/libdeps/tbeam/NimBLE-Arduino/src/log_common/log_common.h
# This overrides the BLE logging default of LOG_LEVEL_INFO (1) from: .pio/libdeps/tbeam/NimBLE-Arduino/src/esp_nimble_cfg.h
# -DUSE_NEW_ESP32_BLUETOOTH will enable the new NimBLE C++ api
build_flags =
2020-09-06 17:09:40 +00:00
${arduino_base.build_flags} -Wall -Wextra -Isrc/esp32 -Isrc/esp32-mfix-esp32-psram-cache-issue -lnimble -std=c++11
-DLOG_LOCAL_LEVEL=ESP_LOG_DEBUG -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG -DMYNEWT_VAL_BLE_HS_LOG_LVL=LOG_LEVEL_CRITICAL
2022-03-07 01:52:05 +00:00
-DAXP_DEBUG_PORT=Serial -DUSE_NEW_ESP32_BLUETOOTH
lib_deps =
${arduino_base.lib_deps}
${networking_base.lib_deps}
${environmental_base.lib_deps}
https://github.com/meshtastic/esp32_https_server.git
2022-03-05 16:57:38 +00:00
h2zero/NimBLE-Arduino@1.3.7
2022-03-15 06:35:29 +00:00
arduino-libraries/NTPClient@^3.1.0
lorol/LittleFS_esp32@^1.0.6
https://github.com/meshtastic/AXP202X_Library.git#8404abb6d4b486748636bc6ad72d2a47baaf5460
2021-12-12 03:26:03 +00:00
lib_ignore =
segger_rtt
ESP32 BLE Arduino
platform_packages =
framework-arduinoespressif32@https://github.com/meshtastic/arduino-esp32.git#4cde0f5d412d2695184f32e8a47e9bea57b45276
2022-03-15 06:35:29 +00:00
; leave this commented out to avoid breaking Windows
2021-12-26 17:08:49 +00:00
;upload_port = /dev/ttyUSB0
2021-03-12 06:10:36 +00:00
;monitor_port = /dev/ttyUSB0
2022-04-14 04:59:25 +00:00
; Please don't delete these lines. JM uses them.
;upload_port = /dev/cu.SLAB_USBtoUART
;monitor_port = /dev/cu.SLAB_USBtoUART
2020-09-04 22:03:22 +00:00
; customize the partition table
; http://docs.platformio.org/en/latest/platforms/espressif32.html#partition-tables
board_build.partitions = partition-table.csv
2020-05-10 19:33:17 +00:00
[nrf52_base]
; Instead of the standard nordicnrf52 platform, we use our fork which has our added variant files
2022-03-15 07:28:39 +00:00
; platform = nordicnrf52 ;pending https://github.com/platformio/builder-framework-arduino-nrf5/pull/7
platform = https://github.com/meshtastic/platform-nordicnrf52.git#merge
2020-09-04 22:03:22 +00:00
extends = arduino_base
build_type = debug ; I'm debugging with ICE a lot now
; note: liboberon provides the AES256 implementation for NRF52 (though not using the hardware acceleration of the NRF52840 - FIXME)
build_flags =
2020-09-06 17:09:40 +00:00
${arduino_base.build_flags} -Wno-unused-variable
-Isrc/nrf52
2022-05-17 09:14:21 +00:00
build_src_filter =
${arduino_base.build_src_filter} -<esp32/> -<nimble/> -<mesh/wifi/> -<mesh/http/> -<modules/esp32> -<mqtt/>
lib_ignore =
BluetoothOTA
[nrf52840_base]
extends = nrf52_base
build_flags = ${nrf52_base.build_flags}
lib_deps =
${arduino_base.lib_deps}
${environmental_base.lib_deps}
https://github.com/Kongduino/Adafruit_nRFCrypto.git
; Note: By default no lora device is created for this build - it uses a simulated interface
2020-07-10 03:31:16 +00:00
[env:nrf52840dk]
extends = nrf52840_base
board = nrf52840_dk
; Note: By default no lora device is created for this build - it uses a simulated interface
[env:feather_nrf52832]
extends = nrf52_base
board = adafruit_feather_nrf52832