ESP32-PaxCounter/platformio.ini

135 lines
3.8 KiB
INI
Raw Normal View History

2019-01-19 19:54:54 +01:00
; PlatformIO Project Configuration File
2019-06-29 15:03:55 +02:00
; NOTE: PlatformIO v4 is needed!
2019-01-19 19:54:54 +01:00
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html
2019-06-30 17:48:24 +02:00
; ---> SELECT THE TARGET PLATFORM HERE! <---
2019-06-29 15:03:55 +02:00
[board]
2020-04-05 23:22:31 +02:00
halfile = generic.h
2019-06-29 15:03:55 +02:00
;halfile = ebox.h
;halfile = eboxtube.h
;halfile = ecopower.h
;halfile = heltec.h
;halfile = heltecv2.h
;halfile = ttgov1.h
;halfile = ttgov2.h
;halfile = ttgov21old.h
2019-12-30 17:24:40 +01:00
;halfile = ttgov21new.h
2019-06-29 15:34:46 +02:00
;halfile = ttgofox.h
2019-12-22 13:16:15 +01:00
;halfile = ttgobeam.h
2019-12-31 11:30:18 +01:00
;halfile = ttgobeam10.h
2019-06-29 15:03:55 +02:00
;halfile = fipy.h
;halfile = lopy.h
;halfile = lopy4.h
;halfile = lolin32litelora.h
;halfile = lolin32lora.h
;halfile = lolin32lite.h
;halfile = wemos32oled.h
2019-07-15 22:06:50 +02:00
;halfile = wemos32matrix.h
2019-06-29 15:03:55 +02:00
;halfile = octopus32.h
2019-08-14 21:52:12 +02:00
;halfile = tinypico.h
2019-08-17 18:31:45 +02:00
;halfile = tinypicomatrix.h
;halfile = m5core.h
2020-04-05 23:22:31 +02:00
;halfile = m5fire.h
2020-05-15 18:00:07 +02:00
;halfile = olimexpoe.h
2019-06-29 15:03:55 +02:00
2019-01-19 19:54:54 +01:00
[platformio]
2019-06-29 15:03:55 +02:00
; upload firmware to board with usb cable
2019-10-13 17:48:08 +02:00
default_envs = usb
2019-06-29 15:03:55 +02:00
; upload firmware to a jfrog bintray repository
2019-06-29 17:04:57 +02:00
;default_envs = ota
2019-07-22 23:48:22 +02:00
; use latest versions of libraries
2019-10-13 17:48:08 +02:00
;default_envs = dev
2019-06-30 17:48:24 +02:00
description = Paxcounter is a device for metering passenger flows in realtime. It counts how many mobile devices are around.
2019-01-19 19:54:54 +01:00
[common]
; for release_version use max. 10 chars total, use any decimal format like "a.b.c"
2020-05-09 22:49:00 +02:00
release_version = 1.9.992
2019-01-19 19:54:54 +01:00
; 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
debug_level = 3
2019-01-19 19:54:54 +01:00
extra_scripts = pre:build.py
otakeyfile = ota.conf
lorakeyfile = loraconf.h
lmicconfigfile = lmic_config.h
2020-05-01 12:25:44 +02:00
platform_espressif32 = espressif32@1.12.1
2019-01-19 19:54:54 +01:00
monitor_speed = 115200
2020-05-09 22:49:00 +02:00
upload_speed = 115200 ; set by build.py and taken from hal file
display_library = ; set by build.py and taken from hal file
2019-01-19 20:04:47 +01:00
lib_deps_lora =
MCCI LoRaWAN LMIC library@3.2.0 ; MCCI LMIC by Terrill Moore
2019-01-19 19:54:54 +01:00
lib_deps_display =
2020-05-15 18:00:07 +02:00
OneBitDisplay@1.3.0
2020-05-09 22:49:00 +02:00
QRCode@0.0.1
2020-05-01 12:25:44 +02:00
BitBang_I2C@2.1.1
;TFT_eSPI@2.2.6
https://github.com/Bodmer/TFT_eSPI.git
2020-05-09 22:49:00 +02:00
lib_deps_ledmatrix =
2020-01-17 19:29:47 +01:00
Ultrathin_LED_Matrix@>=1.0.0
2019-01-19 19:54:54 +01:00
lib_deps_rgbled =
SmartLeds@>=1.2.0
2019-01-19 19:54:54 +01:00
lib_deps_gps =
2019-10-13 17:48:08 +02:00
1655@>=1.0.2 ; #1655 TinyGPSPlus by Mikal Hart
2019-03-13 21:15:28 +01:00
lib_deps_sensors =
2020-05-01 12:25:44 +02:00
Adafruit Unified Sensor@>=1.1.2
Adafruit BME280 Library@>=2.0.2
2019-12-08 12:58:12 +01:00
Adafruit BMP085 Library@>=1.0.1
2020-02-04 14:05:46 +01:00
BSEC Software Library@1.5.1474
2020-02-26 15:58:10 +01:00
https://github.com/ricki-z/SDS011.git
2019-01-19 19:54:54 +01:00
lib_deps_basic =
ArduinoJson@^5.13.1
2019-12-31 11:30:18 +01:00
76@>=1.2.4 ; #76 Timezone by Jack Christensen
274@>=2.3.4 ; #274 RTC by Michael Miller
2019-05-03 20:24:42 +02:00
SimpleButton
2020-05-15 18:00:07 +02:00
AXP202X_Library@>=1.1.1 ; AXP202 PMU lib by Lewis He
2019-12-25 23:07:34 +01:00
esp32-micro-sdcard
2019-01-19 20:04:47 +01:00
lib_deps_all =
2019-01-19 19:54:54 +01:00
${common.lib_deps_basic}
${common.lib_deps_lora}
${common.lib_deps_display}
${common.lib_deps_rgbled}
${common.lib_deps_gps}
2019-07-06 15:52:11 +02:00
${common.lib_deps_sensors}
2020-05-09 22:49:00 +02:00
${common.lib_deps_ledmatrix}
2019-01-19 19:54:54 +01:00
build_flags_basic =
2019-06-29 15:03:55 +02:00
-include "src/hal/${board.halfile}"
2019-01-19 19:54:54 +01:00
-include "src/paxcounter.conf"
2019-07-25 23:25:33 +02:00
-w
2019-01-19 19:54:54 +01:00
'-DCORE_DEBUG_LEVEL=${common.debug_level}'
'-DLOG_LOCAL_LEVEL=${common.debug_level}'
'-DPROGVERSION="${common.release_version}"'
build_flags_sensors =
-Llib/Bosch-BSEC/src/esp32/
-lalgobsec
build_flags_all =
${common.build_flags_basic}
${common.build_flags_sensors}
-mfix-esp32-psram-cache-issue
2019-06-29 15:03:55 +02:00
[env]
2019-07-16 22:48:37 +02:00
framework = arduino
board = esp32dev
board_build.partitions = min_spiffs.csv
2019-06-30 17:48:24 +02:00
upload_speed = ${common.upload_speed}
2020-05-15 18:00:07 +02:00
;upload_port = COM8
2019-01-19 19:54:54 +01:00
platform = ${common.platform_espressif32}
lib_deps = ${common.lib_deps_all}
build_flags = ${common.build_flags_all}
upload_protocol = ${common.upload_protocol}
extra_scripts = ${common.extra_scripts}
monitor_speed = ${common.monitor_speed}
2019-06-29 15:03:55 +02:00
[env:ota]
upload_protocol = custom
[env:usb]
2019-06-29 17:04:57 +02:00
upload_protocol = esptool
[env:dev]
2019-09-17 15:05:35 +02:00
upload_protocol = esptool
2019-06-30 17:48:24 +02:00
build_type = debug
2020-02-04 14:05:46 +01:00
platform = https://github.com/platformio/platform-espressif32.git#develop
2020-02-10 22:58:34 +01:00
platform_packages = framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git