2021-04-17 18:28:44 +02:00
|
|
|
;-------------------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; File: platformio.ini
|
|
|
|
;
|
|
|
|
; Function: Project configuration file for LMIC-node.
|
|
|
|
;
|
|
|
|
; Copyright: Copyright (c) 2021 Leonel Lopes Parente
|
|
|
|
;
|
|
|
|
; License: MIT License. See accompanying LICENSE file.
|
|
|
|
;
|
|
|
|
; Author: Leonel Lopes Parente
|
|
|
|
;
|
|
|
|
; Description: This is the main configuration file. It contains:
|
|
|
|
; - Board selector to select your board type
|
|
|
|
; - Common settings used for all boards
|
|
|
|
; - Board specific settings that can be altered per board.
|
|
|
|
;
|
|
|
|
; For a description of all settings see README.md
|
|
|
|
;
|
|
|
|
;-------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
; | Board Selector |
|
|
|
|
; | |
|
|
|
|
; | Select your board by uncommenting EXACTLY ONE board-id below. |
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
[platformio]
|
|
|
|
default_envs =
|
|
|
|
<platformio.ini board selector guard> Comment this line and uncomment one board-id below:
|
2021-04-20 23:11:01 +02:00
|
|
|
|
|
|
|
; LoRa development boards with integrated LoRa support:
|
|
|
|
|
|
|
|
; Board-id Board name
|
|
|
|
;--------- ----------
|
|
|
|
; adafruit_feather_m0_lora ; Adafruit Feather M0 LoRa
|
|
|
|
; disco_l072cz_lrwan1 ; Discovery B-L072Z-LRWAN1
|
|
|
|
; heltec_wifi_lora_32_v2 ; Heltec Wifi LoRa 32 V2
|
|
|
|
; heltec_wifi_lora_32 ; Heltec Wifi LoRa 32
|
|
|
|
; heltec_wireless_stick_lite ; Heltec Wireless Stick Lite
|
|
|
|
; heltec_wireless_stick ; Heltec Wireless Stick
|
|
|
|
; lopy4 ; Pycom Lopy4
|
|
|
|
; lora32u4II ; BSFrance LoRa32u4 II
|
|
|
|
; ttgo_lora32_v1 ; TTGO LoRa32 V1.3
|
|
|
|
; ttgo_lora32_v2 ; TTGO LoRa32 V2.0
|
|
|
|
; ttgo_lora32_v21 ; TTGO LoRa32 V2.1.6
|
|
|
|
; ttgo_tbeam ; TTGO T-Beam V0.7
|
|
|
|
; ttgo_tbeam_v1 ; TTGO T-Beam V1.0
|
|
|
|
|
|
|
|
; Development boards that require an external SPI LoRa module:
|
|
|
|
|
|
|
|
; Board-id Board name
|
|
|
|
;--------- ----------
|
|
|
|
; blackpill_f103c8_128k ; Black Pill 128k
|
|
|
|
; blackpill_f103c8 ; Black Pill 64k
|
|
|
|
; bluepill_f103c8_128k ; Blue Pill 128k
|
|
|
|
; bluepill_f103c8 ; Blue Pill 64k
|
|
|
|
; lolin_d32_pro ; Lolin D32 Pro
|
|
|
|
; lolin_d32 ; Lolin D32
|
|
|
|
; lolin32 ; Lolin32
|
|
|
|
; nodemcu_32s ; NodeMCU-32S
|
|
|
|
; nodemcuv2 ; NodeMCU V2
|
|
|
|
; pro8mhzatmega328 ; Arduino Pro Mini 3.3V 8Mhz
|
|
|
|
; zerousb ; Arduino Zero (USB)
|
2021-04-17 18:28:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
; | Common Settings |
|
|
|
|
; | |
|
|
|
|
; | These settings are shared by all board configurations except for |
|
|
|
|
; | nodemcuv2 which uses its own monitor_speed setting. |
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
[common]
|
|
|
|
|
|
|
|
monitor_speed = 115200
|
|
|
|
|
|
|
|
build_flags =
|
|
|
|
-D DO_WORK_INTERVAL_SECONDS=60
|
|
|
|
|
|
|
|
; -D ABP_ACTIVATION ; Use ABP instead of OTAA activation
|
|
|
|
;
|
|
|
|
; -D WAITFOR_SERIAL_SECONDS=10 ; Can be used to override the default value (10)
|
|
|
|
; Only used for boards with default set to != 0 in BSF
|
|
|
|
lib_deps =
|
|
|
|
olikraus/U8g2 ; OLED display library
|
|
|
|
lnlp/EasyLed ; LED library
|
|
|
|
|
|
|
|
; --------------------------------------------------
|
|
|
|
; | MCCI LoRaWAN LMIC library specific settings |
|
|
|
|
; --------------------------------------------------
|
|
|
|
|
|
|
|
[mcci_lmic]
|
|
|
|
; LMIC-node was tested with MCCI LoRaWAN LMIC library v3.3.0.
|
|
|
|
; Some changes have been announced for future versions of the MCCI library
|
|
|
|
; which may be incompatible with LMIC-node. In case of problems just
|
|
|
|
; use mcci-catena/MCCI LoRaWAN LMIC library@3.3.0 below which will
|
|
|
|
; explicitly use v3.3.0 of the library.
|
|
|
|
; Perform PlatformIO: Clean after changing library version and
|
|
|
|
; in case of issues remove the old version from .pio/libdeps/*.
|
|
|
|
|
2021-04-21 14:43:14 +02:00
|
|
|
; If LMIC_DEBUG_LEVEL is set to value > 0 then LMIC_PRINTF_TO will
|
|
|
|
; be automatically set to serial (do not set it explicitly).
|
|
|
|
|
2021-04-17 18:28:44 +02:00
|
|
|
lib_deps =
|
|
|
|
; Only ONE of below LMIC libraries should be enabled.
|
|
|
|
mcci-catena/MCCI LoRaWAN LMIC library ; MCCI LMIC library (latest release)
|
|
|
|
; mcci-catena/MCCI LoRaWAN LMIC library@3.3.0 ; MCCI LMIC library v3.3.0
|
|
|
|
|
|
|
|
build_flags =
|
|
|
|
; Use platformio.ini for settings instead lmic_project_config.h.
|
|
|
|
-D ARDUINO_LMIC_PROJECT_CONFIG_H_SUPPRESS
|
2021-04-21 14:43:14 +02:00
|
|
|
|
2021-04-17 18:28:44 +02:00
|
|
|
; Ping and beacons not supported for class A, disable to save memory.
|
2021-04-21 01:15:20 +02:00
|
|
|
-D DISABLE_PING
|
|
|
|
-D DISABLE_BEACONS
|
2021-04-21 14:43:14 +02:00
|
|
|
|
2021-04-17 18:28:44 +02:00
|
|
|
; If LMIC_DEBUG_LEVEL is set to value > 0 then LMIC_PRINTF_TO will
|
|
|
|
; be automatically set to serial (do not set it explicitly).
|
2021-04-20 23:11:01 +02:00
|
|
|
; -D LMIC_DEBUG_LEVEL=1 ; 0, 1 or 2
|
2021-04-21 14:43:14 +02:00
|
|
|
|
2021-04-17 18:28:44 +02:00
|
|
|
; -D CFG_sx1272_radio=1 ; Use for SX1272 radio
|
|
|
|
-D CFG_sx1276_radio=1 ; Use for SX1276 radio
|
|
|
|
-D USE_ORIGINAL_AES ; Faster but larger, see docs
|
|
|
|
; -D LMIC_USE_INTERRUPTS ; Not tested or supported on many platforms
|
|
|
|
; -D LMIC_ENABLE_DeviceTimeReq=1 ; Network time support
|
2021-04-21 14:43:14 +02:00
|
|
|
|
2021-04-17 18:28:44 +02:00
|
|
|
; --- Regional settings -----
|
|
|
|
; Enable only one of the following regions:
|
|
|
|
; -D CFG_as923=1
|
|
|
|
; -D CFG_as923jp=1
|
|
|
|
; -D CFG_au915=1
|
2021-04-20 23:11:01 +02:00
|
|
|
; -D CFG_cn490=1 ; Not yet supported
|
|
|
|
; -D CFG_cn783=1 ; Not yet supported
|
|
|
|
; -D CFG_eu433=1 ; Not yet supported
|
2021-04-17 18:28:44 +02:00
|
|
|
-D CFG_eu868=1
|
|
|
|
; -D CFG_in866=1
|
|
|
|
; -D CFG_kr920=1
|
|
|
|
; -D CFG_us915=1
|
|
|
|
|
|
|
|
|
|
|
|
; --------------------------------------------------
|
|
|
|
; | IBM LMIC framework library specific settings |
|
|
|
|
; --------------------------------------------------
|
|
|
|
|
|
|
|
[classic_lmic]
|
|
|
|
; IMPORTANT:
|
2021-04-21 14:43:14 +02:00
|
|
|
; This library was recently deprecated and is no longer maintained.
|
|
|
|
; It is not fully LoRaWAN compliant (e.g. in handling of MAC commands)
|
|
|
|
; and is therefore less suitable for use with The Things Network V3.
|
|
|
|
;
|
2021-04-17 18:28:44 +02:00
|
|
|
; Region, radio and debug settings CANNOT be changed in platformio.ini.
|
|
|
|
; They must be configured in file: config.h in the following location:
|
|
|
|
; .pio/libdeps/<board-id>/IBM LMIC framework/src/lmic
|
2021-04-21 14:43:14 +02:00
|
|
|
;
|
2021-04-17 18:28:44 +02:00
|
|
|
; When making changes to config.h:
|
|
|
|
; CONFIG.H MUST BE CHANGED FOR EACH BOARD SEPARATELY!
|
|
|
|
; (By default libraries are installed per project per build config/board.)
|
2021-04-21 14:43:14 +02:00
|
|
|
|
2021-04-17 18:28:44 +02:00
|
|
|
; If LMIC_DEBUG_LEVEL is set to value > 0 then LMIC_PRINTF_TO will
|
|
|
|
; be automatically set to serial (do not set it explicitly).
|
|
|
|
|
|
|
|
lib_deps =
|
|
|
|
matthijskooijman/IBM LMIC framework ; [Deprecated] Classic LMIC library
|
|
|
|
|
|
|
|
build_flags =
|
2021-04-20 23:11:01 +02:00
|
|
|
; DEFAULT VALUES defined in config.h:
|
2021-04-17 18:28:44 +02:00
|
|
|
; CFG_sx1276_radio 1
|
|
|
|
; CFG_eu868 1
|
2021-04-21 14:43:14 +02:00
|
|
|
; LMIC_DEBUG_LEVEL 0
|
|
|
|
|
2021-04-17 18:28:44 +02:00
|
|
|
; Ping and beacons not supported for class A, disable to save memory.
|
2021-04-21 01:15:20 +02:00
|
|
|
-D DISABLE_PING
|
|
|
|
-D DISABLE_BEACONS
|
2021-04-17 18:28:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
; | LoRa development boards with integrated LoRa support |
|
|
|
|
; | |
|
|
|
|
; | Some but not all of these boards have an onboard display. |
|
|
|
|
; | Some boards require additional wiring that needs to be manually added. |
|
|
|
|
; | Check the Board Support Files in the boards folder for information. |
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
[env:adafruit_feather_m0_lora]
|
|
|
|
; Adafruit Feather M0 with RF9x LoRa (SAMD21)
|
|
|
|
; Be aware that this board needs pin (D)IO0 to be manually wired to GPIO pin 5.
|
|
|
|
; No onboard display.
|
|
|
|
platform = atmelsam
|
|
|
|
board = adafruit_feather_m0
|
|
|
|
framework = arduino
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/adafruit_feather_m0_lora.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:disco_l072cz_lrwan1]
|
|
|
|
; ST B-L072Z-LRWAN1 Discovery kit (STM32L072CZ)
|
|
|
|
; Note: When using upload_protocol mbed then upload_port must be set manually (HW and OS dependent).
|
|
|
|
; No onboard display
|
|
|
|
platform = ststm32
|
|
|
|
board = disco_l072cz_lrwan1
|
|
|
|
framework = arduino
|
|
|
|
upload_protocol = stlink ; If this fails then try mbed
|
|
|
|
; upload_protocol = jlink ; Requires onboard programmer firmware upgrade with Segger STLinkReflash utility
|
|
|
|
; upload_protocol = mbed ; On Windows PlatformIO fails to recognize DIS_L072Z as drive volume
|
|
|
|
; upload_port = E: ; drive much be explicitly specified for upload port (HA and OS dependent)
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/disco_l072cz_lrwan1.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:heltec_wifi_lora_32_v2]
|
|
|
|
; Heltec WiFi LoRa 32 V2 (ESP32)
|
|
|
|
; Onboard OLED display SSD1306 0.96" 128x64
|
|
|
|
platform = espressif32
|
|
|
|
board = heltec_wifi_lora_32_V2
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/heltec_wifi_lora_32_v2.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
-D USE_DISPLAY
|
|
|
|
|
|
|
|
|
|
|
|
[env:heltec_wifi_lora_32]
|
|
|
|
; Heltec WiFi LoRa 32 versions 1.x (ESP32)
|
|
|
|
; Onboard OLED display SSD1306 0.96" 128x64
|
|
|
|
platform = espressif32
|
|
|
|
board = heltec_wifi_lora_32
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/heltec_wifi_lora_32.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
-D USE_DISPLAY
|
|
|
|
|
|
|
|
|
|
|
|
[env:heltec_wireless_stick_lite]
|
|
|
|
; Heltec Wireless Stick Lite (ESP32)
|
|
|
|
; No display
|
|
|
|
platform = espressif32
|
|
|
|
board = heltec_wireless_stick_lite
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/heltec_wireless_stick_lite.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:heltec_wireless_stick]
|
|
|
|
; Heltec Wireless Stick (ESP32)
|
|
|
|
; Onboard OLED display SSD1306 0.49" 64x32
|
|
|
|
; Display is not supported by LMIC-node because resolution is too low.
|
|
|
|
platform = espressif32
|
|
|
|
board = heltec_wireless_stick
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/heltec_wireless_stick.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; NOT SUPPORTED because resolution too low
|
|
|
|
|
|
|
|
|
|
|
|
[env:lopy4]
|
|
|
|
; Pycom LoPy4 (ESP32)
|
|
|
|
; Onboard LED is not supported by lmic-node because WS2812 RGB LED.
|
|
|
|
; No onboard display.
|
|
|
|
; Requires a Pycom Expansion Board (preferred) or USB to Serial adapter
|
|
|
|
; for firmware upload and serial port monitoring. See BSP for pin details.
|
|
|
|
; To put board in upload mode: Manually connect GPIO0 to GND
|
|
|
|
; with a wire, then press reset and then remove wire from GPIO0 to GND again.
|
|
|
|
; After upload press the reset button again to start.
|
|
|
|
platform = espressif32
|
|
|
|
board = lopy4
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/lopy4.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
; -D USE_LED ; Onboard LED type is not supported
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:lora32u4II]
|
|
|
|
; BSFrance LoRa32u4 II (ATmega32u4)
|
|
|
|
; Depending on the version this board may require additional wiring for DIO1.
|
|
|
|
; lmic-node will not work with MCCI LMIC for this board because not enough memory.
|
|
|
|
; Therefore Classic LMIC is hardcoded here (independent of setting in [common]).
|
|
|
|
; No onboard display.
|
|
|
|
; This is an 8-bit MCU with limited memory, therefore IBM LMIC framework library is used.
|
|
|
|
platform = atmelavr
|
|
|
|
board = lora32u4II
|
|
|
|
framework = arduino
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${classic_lmic.lib_deps}
|
|
|
|
; ${mcci_lmic.lib_deps} ; MCCI LMIC better LoRaWAN compliance but uses more memory
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${classic_lmic.build_flags}
|
2021-04-21 14:43:14 +02:00
|
|
|
; ${mcci_lmic.build_flags} ; MCCI LMIC better LoRaWAN compliance but uses more memory
|
2021-04-17 18:28:44 +02:00
|
|
|
-D BSFILE=\"boards/lora32u4II.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:ttgo_lora32_v1]
|
|
|
|
; TTGO LoRa32 v1.3 (ESP32)
|
|
|
|
; Onboard OLED display SSD1306 0.96" 128x64
|
|
|
|
; Currently unknown if board has programmable onboard LED
|
|
|
|
platform = espressif32
|
|
|
|
board = ttgo-lora32-v1
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/ttgo_lora32_v1.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
; -D USE_LED ; Not supported, boards appears to have no user LED
|
|
|
|
-D USE_DISPLAY
|
|
|
|
|
|
|
|
|
|
|
|
[env:ttgo_lora32_v2]
|
|
|
|
; TTGO LoRa32 v2.0 (ESP32)
|
|
|
|
; This board requires manual wiring of DIO1.
|
|
|
|
; Onboard OLED display SSD1306 0.96" 128x64
|
|
|
|
; Onboard LED is not usable because LED GPIO is shared with I2C SCL used for display
|
|
|
|
platform = espressif32
|
|
|
|
board = ttgo-lora32-v2
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/ttgo_lora32_v2.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
; -D USE_LED ; Not usable because of conflict with I2C
|
|
|
|
-D USE_DISPLAY
|
|
|
|
|
|
|
|
|
|
|
|
[env:ttgo_lora32_v21]
|
|
|
|
; TTGO LoRa32 v2.1.6 (ESP32)
|
|
|
|
; Onboard OLED display SSD1306 0.96" 128x64 SSD1306 0.96" 128x64
|
|
|
|
; Onboard LED is not usable because LED GPIO is shared with I2C SCL used for display
|
|
|
|
platform = espressif32
|
|
|
|
board = ttgo-lora32-v21
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/ttgo_lora32_v21.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
; -D USE_LED ; Not usable because of conflict with I2C
|
|
|
|
-D USE_DISPLAY
|
|
|
|
|
|
|
|
|
2021-04-20 23:11:01 +02:00
|
|
|
[env:ttgo_tbeam]
|
2021-04-17 18:28:44 +02:00
|
|
|
; TTGO T-Beam versions 0.x (ESP32)
|
|
|
|
; No onboard display
|
|
|
|
platform = espressif32
|
|
|
|
board = ttgo-t-beam
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
2021-04-20 23:11:01 +02:00
|
|
|
-D BSFILE=\"boards/ttgo_tbeam.h\"
|
2021-04-17 18:28:44 +02:00
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
2021-04-20 23:11:01 +02:00
|
|
|
[env:ttgo_tbeam_v1]
|
2021-04-17 18:28:44 +02:00
|
|
|
; TTGO T-Beam version 1.0 (aka T22_08) (ESP32)
|
|
|
|
; Requires additional library for its AXP192 power management chip
|
|
|
|
; No onboard display
|
|
|
|
platform = espressif32
|
|
|
|
board = ttgo-t-beam
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
lewisxhe/AXP202X_Library ; Power management chip library
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
2021-04-20 23:11:01 +02:00
|
|
|
-D BSFILE=\"boards/ttgo_tbeam_v1.h\"
|
2021-04-17 18:28:44 +02:00
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
; | Development boards that require an external SPI LoRa module |
|
|
|
|
; | |
|
|
|
|
; | None of these boards have an onboard display. |
|
|
|
|
; | Check the Board Support Files in the boards folder for required wiring!! |
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
[env:blackpill_f103c8_128k]
|
|
|
|
; Blackill F103C8 128k (STMF103C8T6)
|
|
|
|
; Select the upload protocol to use below.
|
|
|
|
platform = ststm32
|
|
|
|
board = blackpill_f103c8_128
|
|
|
|
framework = arduino
|
|
|
|
; upload_protocol = serial
|
|
|
|
upload_protocol = stlink
|
|
|
|
; upload_protocol = jlink
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/blackpill_f103c8.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:blackpill_f103c8]
|
|
|
|
; Blackpill F103C8 (64k) (STMF103C8T6)
|
|
|
|
; Select the upload protocol to use below.
|
|
|
|
platform = ststm32
|
|
|
|
board = blackpill_f103c8
|
|
|
|
framework = arduino
|
|
|
|
; upload_protocol = serial
|
|
|
|
upload_protocol = stlink
|
|
|
|
; upload_protocol = jlink
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/blackpill_f103c8.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:bluepill_f103c8_128k]
|
|
|
|
; Bluepill F103C8 128k (STMF103C8T6)
|
|
|
|
; Select the upload protocol to use below.
|
|
|
|
platform = ststm32
|
|
|
|
board = bluepill_f103c8_128k
|
|
|
|
framework = arduino
|
|
|
|
; upload_protocol = serial
|
|
|
|
upload_protocol = stlink
|
|
|
|
; upload_protocol = jlink
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/bluepill_f103c8.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:bluepill_f103c8]
|
|
|
|
; Bluepill F103C8 (64k) (STMF103C8T6)
|
|
|
|
; Select the upload protocol to use below.
|
|
|
|
platform = ststm32
|
|
|
|
board = bluepill_f103c8
|
|
|
|
framework = arduino
|
|
|
|
; upload_protocol = serial
|
|
|
|
upload_protocol = stlink
|
|
|
|
; upload_protocol = jlink
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/bluepill_f103c8.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:lolin_d32_pro]
|
|
|
|
; Wemos Lolin D32 Pro (ESP32)
|
|
|
|
platform = espressif32
|
|
|
|
board = lolin_d32_pro
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/lolin_d32_pro.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:lolin_d32]
|
|
|
|
; Wemos Lolin D32 (ESP32)
|
|
|
|
platform = espressif32
|
|
|
|
board = lolin_d32
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/lolin_d32.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:lolin32]
|
|
|
|
; Wemos Lolin32 (ESP32)
|
|
|
|
platform = espressif32
|
|
|
|
board = lolin32
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/lolin32.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:nodemcu_32s]
|
|
|
|
; NodeMCU-32S (ESP32)
|
|
|
|
platform = espressif32
|
|
|
|
board = nodemcu-32s
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/nodemcu_32s.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:nodemcuv2]
|
|
|
|
; NodeMCU V2 (aka NodeMCU 1.0) (ESP8266)
|
|
|
|
; I2C and external OLED display cannot be used due to shortage of GPIO pins.
|
|
|
|
; monitor_speed is set to 74880 (independent of setting in [common])
|
|
|
|
; to be able to read ESP8266 boot messages.
|
|
|
|
platform = espressif8266
|
|
|
|
board = nodemcuv2
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = 74880 ; 74880 so we can read ESP8266 boot messages
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/nodemcuv2.h\"
|
|
|
|
-D MONITOR_SPEED=${env:nodemcuv2.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
|
|
|
|
|
|
|
|
[env:pro8mhzatmega328]
|
|
|
|
; Arduino Pro Mini 8 MHz (ATmega328)
|
|
|
|
; Onboard LED is not usable because GPIO is shared with SPI SCK needed for LoRa module.
|
|
|
|
; This is an 8-bit MCU with limited memory, therefore IBM LMIC framework library is used.
|
|
|
|
platform = atmelavr
|
|
|
|
board = pro8MHzatmega328
|
|
|
|
framework = arduino
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${classic_lmic.lib_deps}
|
|
|
|
; ${mcci_lmic.lib_deps} ; MCCI LMIC better LoRaWAN compliance but uses more memory
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${classic_lmic.build_flags}
|
2021-04-21 14:43:14 +02:00
|
|
|
; ${mcci_lmic.build_flags} ; MCCI LMIC better LoRaWAN compliance but uses more memory
|
2021-04-17 18:28:44 +02:00
|
|
|
-D BSFILE=\"boards/pro8mhzatmega328.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
; -D USE_LED ; Not usable because of conflict with SPI
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
[env:zerousb]
|
|
|
|
; Arduino Zero USB (SAMD21)
|
|
|
|
; For SPI use the ICSP connector on top of the board. It provides
|
|
|
|
; the SCK, MOSI and MISO pins needed for connecting the LoRa module.
|
|
|
|
platform = atmelsam
|
|
|
|
board = zeroUSB
|
|
|
|
framework = arduino
|
|
|
|
monitor_speed = ${common.monitor_speed}
|
|
|
|
lib_deps =
|
|
|
|
${common.lib_deps}
|
|
|
|
${mcci_lmic.lib_deps}
|
|
|
|
build_flags =
|
|
|
|
${common.build_flags}
|
|
|
|
${mcci_lmic.build_flags}
|
|
|
|
-D BSFILE=\"boards/zerousb.h\"
|
|
|
|
-D MONITOR_SPEED=${common.monitor_speed}
|
|
|
|
-D USE_SERIAL
|
|
|
|
-D USE_LED
|
|
|
|
; -D USE_DISPLAY ; Requires external I2C OLED display
|
|
|
|
|
|
|
|
|
|
|
|
; end of file
|