mirror of
https://github.com/btclock/btclock_v3.git
synced 2024-11-19 04:30:02 +01:00
98 lines
2.4 KiB
INI
98 lines
2.4 KiB
INI
; 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
|
|
[platformio]
|
|
data_dir = data/build_gz
|
|
|
|
[env]
|
|
|
|
|
|
[btclock_base]
|
|
platform = espressif32 @ ^6.5.0
|
|
framework = arduino, espidf
|
|
monitor_speed = 115200
|
|
monitor_filters = esp32_exception_decoder, colorize
|
|
board_build.filesystem = littlefs
|
|
extra_scripts = post:scripts/extra_script.py
|
|
build_flags =
|
|
!python scripts/git_rev.py
|
|
-DLAST_BUILD_TIME=$UNIX_TIME
|
|
-DARDUINO_USB_CDC_ON_BOOT
|
|
-DCORE_DEBUG_LEVEL=0
|
|
-fexceptions
|
|
build_unflags =
|
|
-Werror=all
|
|
-fno-exceptions
|
|
lib_deps =
|
|
bblanchon/ArduinoJson@^6.21.5
|
|
esphome/Improv@^1.2.3
|
|
esphome/ESPAsyncWebServer-esphome@^3.1.0
|
|
adafruit/Adafruit BusIO@^1.15.0
|
|
adafruit/Adafruit MCP23017 Arduino Library@^2.3.2
|
|
adafruit/Adafruit NeoPixel@^1.12.0
|
|
https://github.com/dsbaars/universal_pin
|
|
https://github.com/dsbaars/GxEPD2#universal_pin
|
|
https://github.com/tzapu/WiFiManager.git#v2.0.16-rc.2
|
|
|
|
[env:lolin_s3_mini]
|
|
extends = btclock_base
|
|
board = lolin_s3_mini
|
|
board_build.partitions = partition.csv
|
|
build_flags =
|
|
${btclock_base.build_flags}
|
|
-D MCP_INT_PIN=8
|
|
-D NEOPIXEL_PIN=34
|
|
-D NEOPIXEL_COUNT=4
|
|
-D NUM_SCREENS=7
|
|
-D I2C_SDA_PIN=35
|
|
-D I2C_SCK_PIN=36
|
|
build_unflags =
|
|
${btclock_base.build_unflags}
|
|
|
|
[env:lolin_s3_mini_qr]
|
|
extends = env:lolin_s3_mini
|
|
test_framework = unity
|
|
build_flags =
|
|
${env:lolin_s3_mini.build_flags}
|
|
-D USE_QR
|
|
|
|
[env:btclock_s3]
|
|
extends = btclock_base
|
|
board = btclock
|
|
board_build.partitions = partition_16mb.csv
|
|
test_framework = unity
|
|
build_flags =
|
|
${btclock_base.build_flags}
|
|
-D MCP_INT_PIN=4
|
|
-D NEOPIXEL_PIN=5
|
|
-D NEOPIXEL_COUNT=4
|
|
-D NUM_SCREENS=8
|
|
-D SPI_SDA_PIN=11
|
|
-D SPI_SCK_PIN=12
|
|
-D I2C_SDA_PIN=1
|
|
-D I2C_SCK_PIN=2
|
|
-D MCP_RESET_PIN=21
|
|
-D MCP1_A0_PIN=6
|
|
-D MCP1_A1_PIN=7
|
|
-D MCP1_A2_PIN=8
|
|
-D MCP2_A0_PIN=9
|
|
-D MCP2_A1_PIN=10
|
|
-D MCP2_A2_PIN=14
|
|
build_unflags =
|
|
${btclock_base.build_unflags}
|
|
|
|
[env:native_test_only]
|
|
platform = native
|
|
test_framework = unity
|
|
build_flags =
|
|
${btclock_base.build_flags}
|
|
-D MCP_INT_PIN=8
|
|
-D NEOPIXEL_PIN=34
|
|
-D NEOPIXEL_COUNT=4
|
|
-D NUM_SCREENS=7 |