ESP32-PaxCounter/platformio_orig_s3.ini

69 lines
2.1 KiB
INI
Raw Normal View History

[board]
2022-11-27 21:50:38 +01:00
;halfile = ttgotdongles3.h
halfile = ttgotdongledisplays3.h
2022-11-05 16:08:46 +01:00
;halfile = ttgotdisplays3.h
[platformio]
; upload firmware to board with usb cable
default_envs = usb
description = Paxcounter is a device for metering passenger flows in realtime. It counts how many mobile devices are around.
[common]
; for release_version use max. 10 chars total, use any decimal format like "a.b.c"
release_version = 3.6.0
; DEBUG LEVEL: For production run set to 0, otherwise device will leak RAM while running!
; 0=None, 1=Error, 2=Warn, 3=Info, 4=Debug, 5=Verbose
2022-11-05 16:08:46 +01:00
debug_level = 3
2023-01-16 22:33:56 +01:00
extra_scripts = pre:src/build.py
otakeyfile = ota.conf
lorakeyfile = loraconf.h
lmicconfigfile = lmic_config.h
2023-06-24 16:46:07 +02:00
platform_espressif32 = espressif32@6.3.2
monitor_speed = 115200
upload_speed = 115200 ; set by build.py and taken from hal file
lib_deps_all =
2022-11-27 21:50:38 +01:00
bitbank2/BitBang_I2C@ ^2.2.1
2023-01-14 19:34:49 +01:00
bitbank2/bb_spi_lcd @ ^2.4.1
2023-06-04 22:08:10 +02:00
fastled/FastLED @ ^3.6.0
2022-12-21 14:05:53 +01:00
greyrook/libpax @ ^1.1.0
https://github.com/SukkoPera/Arduino-Rokkit-Hash.git
2023-04-28 17:28:42 +02:00
bblanchon/ArduinoJson @ ^6.21.2
2022-11-06 15:00:54 +01:00
mathertel/OneButton @ ^2.0.3
2023-02-11 13:56:48 +01:00
256dpi/MQTT @ ^2.5.1
ricmoo/QRCode @ ^0.0.1
build_flags_all =
-include "src/paxcounter.conf"
'-D CORE_DEBUG_LEVEL=${common.debug_level}'
'-D LOG_LOCAL_LEVEL=${common.debug_level}'
'-D PROGVERSION="${common.release_version}"'
'-D LIBPAX_WIFI'
'-D LIBPAX_BLE'
'-D LIBPAX_ARDUINO'
'-D USE_ESP_IDF_LOG'
'-D TAG=__FILE__'
'-U BOARD_HAS_PSRAM'
[env]
framework = arduino
board = esp32-s3-devkitc-1
board_build.partitions = min_spiffs.csv
build_type = release
upload_speed = ${common.upload_speed}
;upload_port = COM6
platform = ${common.platform_espressif32}
lib_deps = ${common.lib_deps_all}
2022-11-04 15:11:54 +01:00
build_flags =
-include "src/hal/${board.halfile}"
${common.build_flags_all}
extra_scripts = ${common.extra_scripts}
monitor_speed = ${common.monitor_speed}
monitor_filters = time, esp32_exception_decoder, default
[env:usb]
2022-11-04 15:11:54 +01:00
upload_protocol = esptool
[env:ci]
build_flags =
-include "src/hal/${sysenv.CI_HALFILE}" ; set by CI
${common.build_flags_all}
upload_protocol = esptool