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]
|
2020-04-15 21:51:17 +00:00
|
|
|
default_envs = tbeam
|
2020-02-01 16:30:53 +00:00
|
|
|
|
2020-03-27 20:20:52 +00:00
|
|
|
[common]
|
2020-04-19 15:33:59 +00:00
|
|
|
; common is not currently used
|
2020-03-27 20:20:52 +00:00
|
|
|
|
2020-04-19 15:33:59 +00:00
|
|
|
; REQUIRED environment variables - if not set the specified default will be sued
|
|
|
|
; The following environment variables must be set in the shell if you'd like to override them.
|
|
|
|
; They are used in this ini file as systenv.VARNAME, so in your shell do export "VARNAME=fish"
|
|
|
|
; HW_VERSION (default US)
|
|
|
|
; APP_VERSION (default emptystring)
|
|
|
|
; HW_VERSION (default emptystring)
|
2020-04-10 19:15:00 +00:00
|
|
|
|
2020-03-27 20:20:52 +00:00
|
|
|
[env]
|
2020-02-01 16:30:53 +00:00
|
|
|
platform = espressif32
|
|
|
|
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-28 05:45:20 +00:00
|
|
|
; FIXME: fix lib/BluetoothOTA dependency back on src/ so we can remove -Isrc
|
2020-04-19 15:33:59 +00:00
|
|
|
build_flags = -Wno-missing-field-initializers -Isrc -Isrc/rf95 -Os -Wl,-Map,.pio/build/output.map
|
|
|
|
-DAXP_DEBUG_PORT=Serial
|
|
|
|
-DHW_VERSION_${sysenv.COUNTRY}
|
|
|
|
-DAPP_VERSION=${sysenv.APP_VERSION}
|
|
|
|
-DHW_VERSION=${sysenv.HW_VERSION}
|
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-03-29 19:33:14 +00:00
|
|
|
; leave this commented out to avoid breaking Windows
|
|
|
|
;upload_port = /dev/ttyUSB0
|
|
|
|
;monitor_port = /dev/ttyUSB0
|
|
|
|
|
2020-02-03 02:33:46 +00:00
|
|
|
; the default is esptool
|
|
|
|
; upload_protocol = esp-prog
|
|
|
|
|
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
|
|
|
|
|
2020-02-01 16:30:53 +00:00
|
|
|
lib_deps =
|
2020-03-02 23:13:33 +00:00
|
|
|
https://github.com/meshtastic/esp8266-oled-ssd1306.git ; ESP8266_SSD1306
|
2020-02-04 15:31:32 +00:00
|
|
|
SPI
|
2020-03-14 01:48:38 +00:00
|
|
|
; 1260 ; OneButton - not used yet
|
2020-02-28 05:45:20 +00:00
|
|
|
1202 ; 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
|
2020-03-15 04:21:45 +00:00
|
|
|
https://github.com/meshtastic/arduino-fsm.git
|
2020-03-14 19:46:24 +00:00
|
|
|
https://github.com/meshtastic/SparkFun_Ublox_Arduino_Library.git
|
2020-02-06 06:13:27 +00:00
|
|
|
|
2020-04-15 03:22:27 +00:00
|
|
|
; Common settings for ESP targes, mixin with extends = esp32_base
|
|
|
|
[esp32_base]
|
|
|
|
src_filter =
|
|
|
|
${env.src_filter} -<bare/>
|
|
|
|
upload_speed = 921600
|
|
|
|
debug_init_break = tbreak setup
|
|
|
|
build_flags =
|
|
|
|
${env.build_flags} -Wall -Wextra
|
|
|
|
|
2020-03-28 22:31:22 +00:00
|
|
|
; The 1.0 release of the TBEAM board
|
2020-04-10 19:15:00 +00:00
|
|
|
[env:tbeam]
|
|
|
|
extends = esp32_base
|
2020-03-27 20:20:52 +00:00
|
|
|
board = ttgo-t-beam
|
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
|
|
|
AXP202X_Library
|
2020-03-28 22:31:22 +00:00
|
|
|
build_flags =
|
2020-04-15 03:22:27 +00:00
|
|
|
${esp32_base.build_flags} -D TBEAM_V10
|
2020-03-28 22:31:22 +00:00
|
|
|
|
|
|
|
; The original TBEAM board without the AXP power chip and a few other changes
|
2020-04-16 16:05:53 +00:00
|
|
|
; Note: I've heard reports this didn't work. Disabled until someone with a 0.7 can test and debug.
|
|
|
|
;[env:tbeam0.7]
|
|
|
|
;extends = esp32_base
|
|
|
|
;board = ttgo-t-beam
|
|
|
|
;build_flags =
|
|
|
|
; ${esp32_base.build_flags} -D TBEAM_V07
|
2020-02-06 06:13:27 +00:00
|
|
|
|
2020-03-27 20:20:52 +00:00
|
|
|
[env:heltec]
|
2020-02-06 06:13:27 +00:00
|
|
|
;build_type = debug ; to make it possible to step through our jtag debugger
|
2020-04-10 19:15:00 +00:00
|
|
|
extends = esp32_base
|
2020-03-27 20:20:52 +00:00
|
|
|
board = heltec_wifi_lora_32_V2
|
2020-03-27 23:55:19 +00:00
|
|
|
|
|
|
|
[env:ttgo-lora32-v1]
|
2020-04-10 19:15:00 +00:00
|
|
|
extends = esp32_base
|
2020-03-27 23:55:19 +00:00
|
|
|
board = ttgo-lora32-v1
|
2020-03-28 21:45:33 +00:00
|
|
|
build_flags =
|
2020-04-15 03:22:27 +00:00
|
|
|
${esp32_base.build_flags} -D TTGO_LORA_V1
|
2020-03-27 23:55:19 +00:00
|
|
|
|
|
|
|
; note: the platformio definition for lora32-v2 seems stale, it is missing a pins_arduino.h file, therefore I don't think it works
|
2020-03-28 21:45:33 +00:00
|
|
|
[env:ttgo-lora32-v2]
|
2020-04-10 19:15:00 +00:00
|
|
|
extends = esp32_base
|
2020-03-28 21:45:33 +00:00
|
|
|
board = ttgo-lora32-v1
|
|
|
|
build_flags =
|
2020-04-15 03:22:27 +00:00
|
|
|
${esp32_base.build_flags} -D TTGO_LORA_V2
|
2020-04-01 04:56:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
; This is a temporary build target to test turning off particular hardare bits in the build (to improve modularity)
|
|
|
|
[env:bare]
|
2020-04-15 03:22:27 +00:00
|
|
|
platform = nordicnrf52
|
|
|
|
board = nrf52840_dk_adafruit ; nicer than nrf52840_dk - more full gpio mappings
|
|
|
|
framework = arduino
|
|
|
|
debug_tool = jlink
|
2020-04-01 04:56:35 +00:00
|
|
|
build_flags =
|
2020-04-15 03:22:27 +00:00
|
|
|
${env.build_flags} -D BARE_BOARD -Wno-unused-variable -Isrc/bare
|
2020-04-10 19:15:00 +00:00
|
|
|
src_filter =
|
|
|
|
${env.src_filter} -<esp32/>
|
|
|
|
lib_ignore =
|
2020-04-15 03:22:27 +00:00
|
|
|
BluetoothOTA
|
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
|
|
|
monitor_port = /dev/ttyACM1
|