Files
iris-kit/platformio.ini

36 lines
920 B
INI
Raw Normal View History

2022-01-12 17:24:18 +08: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
[common]
board_1m = esp01
ldscript_1m = eagle.flash.1m192.ld
workspace = D:/Project/irext/iris-kit
2022-01-12 17:24:18 +08:00
[env]
platform = espressif8266
framework = arduino
monitor_speed = 115200
upload_speed = 115200
2022-09-01 10:53:54 +08:00
upload_port = COM6
monitor_port = COM6
2022-01-12 17:24:18 +08:00
board_build.flash_mode = dout
2022-01-30 11:24:38 +08:00
build_flags =
-Wno-unused-function
-Wno-unused-variable
-DLOG_DEBUG=1
-DLOG_INFO=1
-DLOG_ERROR=1
-I${common.workspace}/lib/IRext/include
2022-01-12 17:24:18 +08:00
[env:esp8266-1m-base]
board = ${common.board_1m}
board_build.ldscript = ${common.ldscript_1m}
lib_deps = rweather/Crypto@^0.2.0