2020-02-01 16:30:53 +00: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
|
|
|
|
|
|
|
|
[platformio]
|
|
|
|
|
|
|
|
[env:esp32]
|
|
|
|
platform = espressif32
|
2020-02-06 06:13:27 +00:00
|
|
|
board = ttgo-t-beam
|
2020-02-07 05:26:40 +00:00
|
|
|
; board = heltec_wifi_lora_32_V2
|
2020-02-01 16:30:53 +00:00
|
|
|
framework = arduino
|
|
|
|
|
2020-02-01 17:46:25 +00:00
|
|
|
; customize the partition table
|
|
|
|
; http://docs.platformio.org/en/latest/platforms/espressif32.html#partition-tables
|
|
|
|
board_build.partitions = partition-table.csv
|
|
|
|
|
2020-02-01 16:30:53 +00:00
|
|
|
; note: we add src to our include search path so that lmic_project_config can override
|
2020-02-06 15:39:21 +00:00
|
|
|
build_flags = -Wall -Wextra -Wno-missing-field-initializers -Isrc -Os -Wl,-Map,.pio/build/esp32/output.map -DAXP_DEBUG_PORT=Serial
|
2020-02-05 23:37:58 +00:00
|
|
|
|
|
|
|
; not needed included in ttgo-t-beam board file
|
|
|
|
; also to use PSRAM https://docs.platformio.org/en/latest/platforms/espressif32.html#external-ram-psram
|
|
|
|
; -DBOARD_HAS_PSRAM
|
|
|
|
; -mfix-esp32-psram-cache-issue
|
|
|
|
|
|
|
|
|
2020-02-01 16:30:53 +00:00
|
|
|
; -DLOG_LOCAL_LEVEL=ESP_LOG_DEBUG -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
|
|
|
|
|
2020-02-02 02:45:27 +00:00
|
|
|
upload_speed = 921600
|
2020-02-05 23:37:58 +00:00
|
|
|
upload_port = /dev/ttyUSB0
|
2020-02-02 02:45:27 +00:00
|
|
|
|
2020-02-03 02:33:46 +00:00
|
|
|
; the default is esptool
|
|
|
|
; upload_protocol = esp-prog
|
|
|
|
|
2020-02-05 23:37:58 +00:00
|
|
|
monitor_port = /dev/ttyUSB0
|
2020-02-01 16:30:53 +00:00
|
|
|
monitor_speed = 115200
|
|
|
|
|
2020-02-04 06:22:53 +00:00
|
|
|
# debug_tool = esp-prog
|
2020-02-05 23:37:58 +00:00
|
|
|
# debug_port = /dev/ttyACM0
|
2020-02-03 02:33:46 +00:00
|
|
|
|
2020-02-05 23:37:58 +00:00
|
|
|
debug_tool = jlink
|
2020-02-07 05:26:40 +00:00
|
|
|
;upload_protocol = jlink
|
2020-02-05 23:37:58 +00:00
|
|
|
|
|
|
|
; debug_tool = olimex-arm-usb-ocd-h
|
2020-02-04 17:00:17 +00:00
|
|
|
; upload_protocol = olimex-arm-usb-ocd-h
|
2020-02-04 06:22:53 +00:00
|
|
|
|
|
|
|
;debug_init_cmds =
|
2020-02-05 23:37:58 +00:00
|
|
|
; monitor adapter_khz 10000
|
|
|
|
|
|
|
|
debug_init_break = tbreak setup
|
2020-02-04 06:22:53 +00:00
|
|
|
|
2020-02-01 16:30:53 +00:00
|
|
|
lib_deps =
|
2020-02-07 05:26:40 +00:00
|
|
|
; RadioHead - I now use a custom build of this library
|
|
|
|
; file:///home/kevinh/development/meshtastic/RadioHead
|
2020-02-01 16:30:53 +00:00
|
|
|
TinyGPSPlus
|
2020-02-20 02:51:17 +00:00
|
|
|
https://github.com/geeksville/esp8266-oled-ssd1306.git ; ESP8266_SSD1306
|
2020-02-01 16:30:53 +00:00
|
|
|
AXP202X_Library
|
2020-02-04 15:31:32 +00:00
|
|
|
SPI
|
2020-02-08 04:59:21 +00:00
|
|
|
OneButton
|
2020-02-07 05:26:40 +00:00
|
|
|
CRC32 ; explicitly needed because dependency is missing in the ble ota update lib
|
2020-02-06 06:13:27 +00:00
|
|
|
Wire ; explicitly needed here because the AXP202 library forgets to add it
|
|
|
|
|
|
|
|
;[env:tbeam]
|
|
|
|
;board = ttgo-t-beam
|
|
|
|
|
|
|
|
;[env:heltec]
|
|
|
|
;build_type = debug ; to make it possible to step through our jtag debugger
|
|
|
|
;board = heltec_wifi_lora_32_V2
|