v3_firmware/platformio.ini

52 lines
1.9 KiB
INI
Raw Permalink Normal View History

2021-02-01 17:29:05 +00:00
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:ATtiny3216]
platform = atmelmegaavr
board = ATtiny3216
framework = arduino
## Board Config ##
# You might want to set f_cpu to 5MHz (5000000L) to allow operation at lower Battery Voltage - Use "Burn Fuses" after changing f_cpu
# Be aware that some Functions (like WS2812B LED Support) will not work at 5 HMz
board_build.f_cpu = 8000000L
2021-02-01 17:29:05 +00:00
board_hardware.oscillator = internal
board_hardware.bod = disabled
## Debug Port Config ##
2021-02-01 17:29:05 +00:00
monitor_speed = 115200
monitor_port = /dev/ttyACM1
2021-02-01 17:29:05 +00:00
## LMIC Config and Debug Mode via Build Flags ##
#**************************************************************************************************************************
# Uncomment -D DEBUG to enable Serial Debugging. Parameters for the Serial Port are 115200 Baud 8n1
# By default the Firmware will output some messages about LoRa-Status and indicate sending
# The Macros DEBUG_PRINT() and DEBUG_PRINTLN() can be used to produce debug output depending on this define
# Please be aware that this will not work when a Serial Sensor like the SG112A/MH-Z19C or Sensair S8 ist used
#*************************************************************************************************************************/
2021-02-01 17:29:05 +00:00
build_flags =
-D CFG_eu868
-D CFG_sx1276_radio
-D DISABLE_PING
-D DISABLE_BEACONS
-D ARDUINO_LMIC_PROJECT_CONFIG_H_SUPPRESS
# -D DEBUG
2021-02-01 17:29:05 +00:00
## Programmer Config (MicroUPDI) ##
2021-02-01 17:29:05 +00:00
upload_port = usb
upload_protocol = xplainedmini_updi
upload_flags =
-p$BOARD_MCU
-P$UPLOAD_PORT
-c$UPLOAD_PROTOCOL
## External Libraries ##
2021-02-01 17:29:05 +00:00
lib_deps =
2021-03-02 16:57:20 +00:00
mcci-catena/MCCI LoRaWAN LMIC library @ ^3.3.0