Merge branch 'master' of https://github.com/SQ9MDD/TTGO-T-Beam-LoRa-APRS into master_sq9mdd

pull/27/head
Łukasz Nidecki 2021-03-25 00:56:35 +01:00
commit 183b26b04c
9 changed files with 7 additions and 11 deletions

View File

@ -1,10 +0,0 @@
How to binary flash readme...
Download current version of the esphome-flasher tool
https://github.com/SQ9MDD/TTGO-T-Beam-LoRa-APRS/blob/master/bin/FlashReadme.md
Connect your board to your USB port and open ESPHome Flasher.
If your board is not showing under Serial Port then you likely need to install the drivers for the CP210X serial chip. In Windows you can check by searching “Device Manager” and ensuring the device is shown under “Ports”.
If there is an error, instal the drivers and make sure your board is present in Device Manager as COMxxx port.
In ESPHome Flasher, refresh the serial ports and select your board's serial port.
Browse to the downloaded firmware and select the correct firmware based on the board type.
Select Flash ESP.
Once complete, “Done! Flashing is complete!” will be shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -9,7 +9,6 @@
; https://docs.platformio.org/page/projectconf.html ; https://docs.platformio.org/page/projectconf.html
[env] [env]
platform = espressif32 @ 3.1.1
framework = arduino framework = arduino
monitor_speed = 115200 monitor_speed = 115200
build_flags = -Wl,--gc-sections,--relax build_flags = -Wl,--gc-sections,--relax
@ -31,29 +30,36 @@ lib_deps =
SparkFun u-blox Arduino Library SparkFun u-blox Arduino Library
[env:ttgo-t-beam-v1.0] [env:ttgo-t-beam-v1.0]
platform = espressif32 @ 3.0.0
board = ttgo-t-beam board = ttgo-t-beam
build_flags = ${env.build_flags} -D T_BEAM_V1_0 build_flags = ${env.build_flags} -D T_BEAM_V1_0
[env:ttgo-t-beam-v0.7] [env:ttgo-t-beam-v0.7]
platform = espressif32 @ 3.0.0
board = ttgo-t-beam board = ttgo-t-beam
build_flags = ${env.build_flags} -D T_BEAM_V0_7 build_flags = ${env.build_flags} -D T_BEAM_V0_7
[env:ttgo-lora32-v2.1] [env:ttgo-lora32-v2.1]
platform = espressif32 @ 3.1.1
board = ttgo-lora32-v21 board = ttgo-lora32-v21
build_flags = ${env.build_flags} -D LORA32_21 build_flags = ${env.build_flags} -D LORA32_21
[env:ttgo-lora32-v2] [env:ttgo-lora32-v2]
platform = espressif32 @ 3.1.1
board = ttgo-lora32-v2 board = ttgo-lora32-v2
build_flags = ${env.build_flags} -D LORA32_2 build_flags = ${env.build_flags} -D LORA32_2
[env:ttgo-lora32-v1] [env:ttgo-lora32-v1]
platform = espressif32 @ 3.1.1
board = ttgo-lora32-v1 board = ttgo-lora32-v1
build_flags = ${env.build_flags} -D LORA32_1 build_flags = ${env.build_flags} -D LORA32_1
[env:Heltec-WiFi-v1] [env:Heltec-WiFi-v1]
platform = espressif32 @ 3.1.1
board = heltec_wifi_kit_32 board = heltec_wifi_kit_32
build_flags = ${env.build_flags} -D HELTEC_V1 build_flags = ${env.build_flags} -D HELTEC_V1
[env:Heltec-WiFi-v2] [env:Heltec-WiFi-v2]
platform = espressif32 @ 3.1.1
board = heltec_wifi_kit_32_v2 board = heltec_wifi_kit_32_v2
build_flags = ${env.build_flags} -D HELTEC_V2 build_flags = ${env.build_flags} -D HELTEC_V2