meshtastic-firmware/platformio.ini

49 wiersze
1.3 KiB
INI
Czysty Zwykły widok Historia

; 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
board = ttgo-t-beam
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
; note: we add src to our include search path so that lmic_project_config can override
2020-02-04 06:22:53 +00:00
build_flags = -Wall -Wextra -Wno-missing-field-initializers -ggdb -O3 -Wl,-Map,.pio/build/esp32/output.map -DAXP_DEBUG_PORT=Serial -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
; -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-04 06:22:53 +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
; monitor_port = /dev/ttyUSB0
monitor_speed = 115200
2020-02-04 06:22:53 +00:00
# debug_tool = esp-prog
2020-02-03 02:33:46 +00:00
# debug_port = /dev/ttyUSB0
2020-02-04 06:22:53 +00:00
debug_tool = olimex-arm-usb-ocd-h
; upload_protocol = olimex-arm-usb-ocd-h
;debug_init_cmds =
; adapter_khz 10000
lib_deps =
2020-02-01 16:59:16 +00:00
RadioHead
TinyGPSPlus
ESP8266_SSD1306
AXP202X_Library
SPI