2020-05-25 09:43:34 +02: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
|
|
|
|
|
2020-05-25 12:56:03 +02:00
|
|
|
[platformio]
|
2020-08-27 00:19:42 +02:00
|
|
|
default_envs =
|
|
|
|
mega2560
|
|
|
|
uno
|
2021-08-03 23:12:25 +02:00
|
|
|
unowifiR2
|
|
|
|
nano
|
2022-05-17 12:06:08 +02:00
|
|
|
samd21-dev-usb
|
2022-07-03 13:01:24 +02:00
|
|
|
samd21-zero-usb
|
2022-08-03 10:21:58 +02:00
|
|
|
ESP32
|
2022-11-07 21:48:35 +01:00
|
|
|
Nucleo-F411RE
|
2023-01-09 09:47:29 +01:00
|
|
|
Nucleo-F446RE
|
2023-04-07 05:59:49 +02:00
|
|
|
Teensy3_2
|
|
|
|
Teensy3_5
|
|
|
|
Teensy3_6
|
|
|
|
Teensy4_0
|
|
|
|
Teensy4_1
|
2023-01-09 09:47:29 +01:00
|
|
|
src_dir = .
|
|
|
|
include_dir = .
|
2020-05-25 12:56:03 +02:00
|
|
|
|
|
|
|
[env]
|
2021-08-03 23:12:25 +02:00
|
|
|
build_flags = -Wall -Wextra
|
2023-09-06 23:32:54 +02:00
|
|
|
; monitor_filters = time
|
2020-08-27 00:19:42 +02:00
|
|
|
|
2022-05-17 12:06:08 +02:00
|
|
|
[env:samd21-dev-usb]
|
2020-05-25 09:43:34 +02:00
|
|
|
platform = atmelsam
|
|
|
|
board = sparkfun_samd21_dev_usb
|
|
|
|
framework = arduino
|
2022-05-17 12:06:08 +02:00
|
|
|
upload_protocol = sam-ba
|
2022-08-03 10:21:58 +02:00
|
|
|
lib_deps = ${env.lib_deps}
|
2022-05-17 12:06:08 +02:00
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2022-08-03 10:21:58 +02:00
|
|
|
build_flags = -std=c++17
|
2022-05-17 12:06:08 +02:00
|
|
|
|
2022-07-03 13:01:24 +02:00
|
|
|
[env:samd21-zero-usb]
|
|
|
|
platform = atmelsam
|
|
|
|
board = zeroUSB
|
|
|
|
framework = arduino
|
|
|
|
upload_protocol = sam-ba
|
2022-08-03 10:21:58 +02:00
|
|
|
lib_deps = ${env.lib_deps}
|
2022-07-03 13:01:24 +02:00
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2022-08-03 10:21:58 +02:00
|
|
|
build_flags = -std=c++17
|
2022-07-03 13:01:24 +02:00
|
|
|
|
2023-04-07 20:44:40 +02:00
|
|
|
[env:Arduino-M0]
|
2023-02-07 18:13:36 +01:00
|
|
|
platform = atmelsam
|
|
|
|
board = mzeroUSB
|
|
|
|
framework = arduino
|
|
|
|
lib_deps = ${env.lib_deps}
|
|
|
|
monitor_speed = 115200
|
|
|
|
monitor_echo = yes
|
2023-09-21 10:05:35 +02:00
|
|
|
build_flags = -std=c++17
|
2023-02-07 18:13:36 +01:00
|
|
|
|
2021-08-03 23:12:25 +02:00
|
|
|
[env:mega2560-debug]
|
|
|
|
platform = atmelavr
|
|
|
|
board = megaatmega2560
|
|
|
|
framework = arduino
|
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
|
|
|
arduino-libraries/Ethernet
|
|
|
|
SPI
|
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2023-09-21 10:05:35 +02:00
|
|
|
build_flags = -DDIAG_IO=2 -DDIAG_LOOPTIMES
|
2021-08-03 23:12:25 +02:00
|
|
|
|
|
|
|
[env:mega2560-no-HAL]
|
|
|
|
platform = atmelavr
|
|
|
|
board = megaatmega2560
|
|
|
|
framework = arduino
|
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
|
|
|
arduino-libraries/Ethernet
|
|
|
|
SPI
|
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2023-09-21 10:05:35 +02:00
|
|
|
build_flags = -DIO_NO_HAL
|
2021-08-03 23:12:25 +02:00
|
|
|
|
|
|
|
[env:mega2560-I2C-wire]
|
|
|
|
platform = atmelavr
|
|
|
|
board = megaatmega2560
|
|
|
|
framework = arduino
|
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
|
|
|
arduino-libraries/Ethernet
|
|
|
|
SPI
|
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2021-08-03 23:12:25 +02:00
|
|
|
build_flags = -DI2C_USE_WIRE
|
|
|
|
|
2020-05-25 09:43:34 +02:00
|
|
|
[env:mega2560]
|
|
|
|
platform = atmelavr
|
|
|
|
board = megaatmega2560
|
|
|
|
framework = arduino
|
|
|
|
lib_deps =
|
2020-08-27 00:19:42 +02:00
|
|
|
${env.lib_deps}
|
2020-09-26 21:06:27 +02:00
|
|
|
arduino-libraries/Ethernet
|
2020-09-26 22:52:13 +02:00
|
|
|
SPI
|
2020-09-27 11:03:05 +02:00
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2023-09-21 10:05:35 +02:00
|
|
|
build_flags =
|
2020-05-26 11:16:05 +02:00
|
|
|
|
|
|
|
[env:mega328]
|
|
|
|
platform = atmelavr
|
|
|
|
board = uno
|
|
|
|
framework = arduino
|
|
|
|
lib_deps =
|
2020-08-27 00:19:42 +02:00
|
|
|
${env.lib_deps}
|
2020-09-26 23:46:28 +02:00
|
|
|
arduino-libraries/Ethernet
|
|
|
|
SPI
|
2020-09-27 11:03:05 +02:00
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2020-08-15 08:11:28 +02:00
|
|
|
|
|
|
|
[env:unowifiR2]
|
|
|
|
platform = atmelmegaavr
|
|
|
|
board = uno_wifi_rev2
|
|
|
|
framework = arduino
|
2020-09-19 02:02:56 +02:00
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
2020-09-26 23:46:28 +02:00
|
|
|
arduino-libraries/Ethernet
|
|
|
|
SPI
|
2020-09-27 11:03:05 +02:00
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2021-08-03 23:12:25 +02:00
|
|
|
build_flags = "-DF_CPU=16000000L -DARDUINO=10813 -DARDUINO_AVR_UNO_WIFI_DEV_ED -DARDUINO_ARCH_AVR -DESP_CH_UART -DESP_CH_UART_BR=19200"
|
|
|
|
|
|
|
|
[env:nanoevery]
|
|
|
|
platform = atmelmegaavr
|
|
|
|
board = nano_every
|
|
|
|
framework = arduino
|
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
|
|
|
arduino-libraries/Ethernet
|
|
|
|
SPI
|
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2021-08-03 23:12:25 +02:00
|
|
|
upload_speed = 19200
|
2023-02-22 22:28:16 +01:00
|
|
|
build_flags =
|
2020-08-27 00:19:42 +02:00
|
|
|
|
|
|
|
[env:uno]
|
|
|
|
platform = atmelavr
|
|
|
|
board = uno
|
|
|
|
framework = arduino
|
2024-02-11 23:19:51 +01:00
|
|
|
lib_deps = ${env.lib_deps}
|
2020-09-27 11:03:05 +02:00
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2022-11-23 22:44:29 +01:00
|
|
|
build_flags = -mcall-prologues
|
2021-08-03 23:12:25 +02:00
|
|
|
|
|
|
|
[env:nano]
|
|
|
|
platform = atmelavr
|
|
|
|
board = nanoatmega328new
|
|
|
|
board_upload.maximum_size = 32256
|
|
|
|
framework = arduino
|
2022-08-03 10:21:58 +02:00
|
|
|
lib_deps = ${env.lib_deps}
|
2021-08-03 23:12:25 +02:00
|
|
|
monitor_speed = 115200
|
2022-08-09 06:28:15 +02:00
|
|
|
monitor_echo = yes
|
2024-02-11 23:19:51 +01:00
|
|
|
build_flags = -mcall-prologues
|
2022-08-03 10:21:58 +02:00
|
|
|
|
|
|
|
[env:ESP32]
|
2024-06-02 21:44:25 +02:00
|
|
|
; Lock version to 6.7.0 as that is
|
|
|
|
; Arduino v2.0.16 (based on IDF v4.4.7)
|
|
|
|
; which is the latest version based
|
|
|
|
; on IDF v4. We can not use IDF v5.
|
|
|
|
platform = espressif32 @ 6.7.0
|
2022-08-03 10:21:58 +02:00
|
|
|
board = esp32dev
|
|
|
|
framework = arduino
|
|
|
|
lib_deps = ${env.lib_deps}
|
2022-08-06 10:53:14 +02:00
|
|
|
build_flags = -std=c++17
|
2023-06-23 12:08:05 +02:00
|
|
|
monitor_speed = 115200
|
|
|
|
monitor_echo = yes
|
2022-08-06 10:53:14 +02:00
|
|
|
|
2022-11-07 21:48:35 +01:00
|
|
|
[env:Nucleo-F411RE]
|
2022-08-06 10:53:14 +02:00
|
|
|
platform = ststm32
|
|
|
|
board = nucleo_f411re
|
|
|
|
framework = arduino
|
|
|
|
lib_deps = ${env.lib_deps}
|
2023-01-09 10:18:50 +01:00
|
|
|
build_flags = -std=c++17 -Os -g2 -Wunused-variable
|
2022-08-06 10:53:14 +02:00
|
|
|
monitor_speed = 115200
|
|
|
|
monitor_echo = yes
|
|
|
|
|
2023-01-09 09:24:29 +01:00
|
|
|
[env:Nucleo-F446RE]
|
|
|
|
platform = ststm32
|
|
|
|
board = nucleo_f446re
|
|
|
|
framework = arduino
|
|
|
|
lib_deps = ${env.lib_deps}
|
2023-09-21 10:05:35 +02:00
|
|
|
build_flags = -std=c++17 -Os -g2 -Wunused-variable
|
|
|
|
monitor_speed = 115200
|
|
|
|
monitor_echo = yes
|
|
|
|
|
|
|
|
; Experimental - no reason this should not work, but not
|
|
|
|
; tested as yet
|
|
|
|
;
|
|
|
|
[env:Nucleo-F401RE]
|
|
|
|
platform = ststm32
|
|
|
|
board = nucleo_f401re
|
|
|
|
framework = arduino
|
|
|
|
lib_deps = ${env.lib_deps}
|
|
|
|
build_flags = -std=c++17 -Os -g2 -Wunused-variable
|
2023-01-09 09:24:29 +01:00
|
|
|
monitor_speed = 115200
|
|
|
|
monitor_echo = yes
|
|
|
|
|
2023-09-21 10:05:35 +02:00
|
|
|
; Commented out by default as the F13ZH has variant files
|
|
|
|
; but NOT the nucleo_f413zh.json file which needs to be
|
|
|
|
; installed before you can let PlatformIO see this
|
|
|
|
;
|
|
|
|
; [env:Nucleo-F413ZH]
|
|
|
|
; platform = ststm32
|
|
|
|
; board = nucleo_f413zh
|
|
|
|
; framework = arduino
|
|
|
|
; lib_deps = ${env.lib_deps}
|
|
|
|
; build_flags = -std=c++17 -Os -g2 -Wunused-variable
|
|
|
|
; monitor_speed = 115200
|
|
|
|
; monitor_echo = yes
|
|
|
|
|
|
|
|
; Commented out by default as the F446ZE needs variant files
|
|
|
|
; installed before you can let PlatformIO see this
|
|
|
|
;
|
|
|
|
; [env:Nucleo-F446ZE]
|
|
|
|
; platform = ststm32
|
|
|
|
; board = nucleo_f446ze
|
|
|
|
; framework = arduino
|
|
|
|
; lib_deps = ${env.lib_deps}
|
|
|
|
; build_flags = -std=c++17 -Os -g2 -Wunused-variable
|
|
|
|
; monitor_speed = 115200
|
|
|
|
; monitor_echo = yes
|
|
|
|
|
|
|
|
; Commented out by default as the F412ZG needs variant files
|
|
|
|
; installed before you can let PlatformIO see this
|
|
|
|
;
|
|
|
|
; [env:Nucleo-F412ZG]
|
|
|
|
; platform = ststm32
|
|
|
|
; board = blah_f412zg
|
|
|
|
; framework = arduino
|
|
|
|
; lib_deps = ${env.lib_deps}
|
|
|
|
; build_flags = -std=c++17 -Os -g2 -Wunused-variable
|
|
|
|
; monitor_speed = 115200
|
|
|
|
; monitor_echo = yes
|
|
|
|
; upload_protocol = stlink
|
|
|
|
|
|
|
|
; Experimental - Ethernet work still in progress
|
|
|
|
;
|
|
|
|
; [env:Nucleo-F429ZI]
|
|
|
|
; platform = ststm32
|
|
|
|
; board = nucleo_f429zi
|
|
|
|
; framework = arduino
|
|
|
|
; lib_deps = ${env.lib_deps}
|
|
|
|
; arduino-libraries/Ethernet @ ^2.0.1
|
|
|
|
; stm32duino/STM32Ethernet @ ^1.3.0
|
|
|
|
; stm32duino/STM32duino LwIP @ ^2.1.2
|
|
|
|
; build_flags = -std=c++17 -Os -g2 -Wunused-variable
|
|
|
|
; monitor_speed = 115200
|
|
|
|
; monitor_echo = yes
|
|
|
|
; upload_protocol = stlink
|
|
|
|
|
2023-04-07 05:59:49 +02:00
|
|
|
[env:Teensy3_2]
|
2022-08-06 10:53:14 +02:00
|
|
|
platform = teensy
|
|
|
|
board = teensy31
|
|
|
|
framework = arduino
|
2022-12-16 14:14:48 +01:00
|
|
|
build_flags = -std=c++17 -Os -g2
|
2022-08-06 10:53:14 +02:00
|
|
|
lib_deps = ${env.lib_deps}
|
|
|
|
lib_ignore = NativeEthernet
|
|
|
|
|
2023-04-07 05:59:49 +02:00
|
|
|
[env:Teensy3_5]
|
2022-08-06 10:53:14 +02:00
|
|
|
platform = teensy
|
|
|
|
board = teensy35
|
|
|
|
framework = arduino
|
2022-12-16 14:14:48 +01:00
|
|
|
build_flags = -std=c++17 -Os -g2
|
2022-08-06 10:53:14 +02:00
|
|
|
lib_deps = ${env.lib_deps}
|
|
|
|
lib_ignore = NativeEthernet
|
|
|
|
|
2023-04-07 05:59:49 +02:00
|
|
|
[env:Teensy3_6]
|
2022-08-06 10:53:14 +02:00
|
|
|
platform = teensy
|
|
|
|
board = teensy36
|
|
|
|
framework = arduino
|
2022-12-16 14:14:48 +01:00
|
|
|
build_flags = -std=c++17 -Os -g2
|
2022-08-06 10:53:14 +02:00
|
|
|
lib_deps = ${env.lib_deps}
|
|
|
|
lib_ignore = NativeEthernet
|
|
|
|
|
2023-04-07 05:59:49 +02:00
|
|
|
[env:Teensy4_0]
|
2022-08-06 10:53:14 +02:00
|
|
|
platform = teensy
|
|
|
|
board = teensy40
|
|
|
|
framework = arduino
|
2022-12-16 14:14:48 +01:00
|
|
|
build_flags = -std=c++17 -Os -g2
|
2022-08-06 10:53:14 +02:00
|
|
|
lib_deps = ${env.lib_deps}
|
|
|
|
lib_ignore = NativeEthernet
|
|
|
|
|
2023-04-07 05:59:49 +02:00
|
|
|
[env:Teensy4_1]
|
2022-08-06 10:53:14 +02:00
|
|
|
platform = teensy
|
|
|
|
board = teensy41
|
|
|
|
framework = arduino
|
2022-12-16 14:14:48 +01:00
|
|
|
build_flags = -std=c++17 -Os -g2
|
2022-08-06 10:53:14 +02:00
|
|
|
lib_deps = ${env.lib_deps}
|
2023-09-21 10:05:35 +02:00
|
|
|
lib_ignore =
|