Add files via upload

pull/106/head
SP6NYA 2023-09-10 00:02:48 +02:00 zatwierdzone przez GitHub
rodzic 6f4b7fb363
commit 8fb6bc37d2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
7 zmienionych plików z 10 dodań i 27 usunięć

Wyświetl plik

@ -13,7 +13,7 @@ After connection with APRX based DIGI it can be used as KISS-TNC
* Lora32 board support: DJ1AN * Lora32 board support: DJ1AN
* Self-telemetry improvement: KB1GIM * Self-telemetry improvement: KB1GIM
* T-beam v1.2 board support: SP6NYA * T-beam v1.2 board support: SP6NYA
* New XPowersLib Library Implementation: SP6NYA * New XPowersLib Library: SP6NYA
## Supported boards ## Supported boards
* TTGO T-beam v.0.7 * TTGO T-beam v.0.7

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -1,10 +1,10 @@
#ifndef BUILD_NUMBER #ifndef BUILD_NUMBER
#define BUILD_NUMBER "127" #define BUILD_NUMBER "182"
#endif #endif
#ifndef VERSION #ifndef VERSION
#define VERSION "v0.4.127- - 2023-09-09 22:51:42.144437" #define VERSION "v0.4.182- - 2023-09-09 23:52:50.292490"
#endif #endif
#ifndef VERSION_SHORT #ifndef VERSION_SHORT
#define VERSION_SHORT "v0.4.127-" #define VERSION_SHORT "v0.4.182-"
#endif #endif

Wyświetl plik

@ -7,7 +7,6 @@
; ;
; Please visit documentation for the other options and examples ; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html ; https://docs.platformio.org/page/projectconf.html
[env] [env]
framework = arduino framework = arduino
monitor_speed = 115200 monitor_speed = 115200
@ -25,9 +24,9 @@ lib_deps =
Adafruit SSD1306 Adafruit SSD1306
Adafruit GFX Library Adafruit GFX Library
Adafruit Unified Sensor Adafruit Unified Sensor
https://github.com/SQ9MDD/AXP202X_Library.git
SparkFun u-blox Arduino Library SparkFun u-blox Arduino Library
bblanchon/ArduinoJson bblanchon/ArduinoJson
XPowersLib
build_flags = build_flags =
-Wl,--gc-sections,--relax -Wl,--gc-sections,--relax
-D 'KISS_PROTOCOL' -D 'KISS_PROTOCOL'
@ -109,7 +108,7 @@ lib_deps =
bblanchon/ArduinoJson@^6.21.3 bblanchon/ArduinoJson@^6.21.3
[env:ttgo-lora32-v2_1] [env:ttgo-lora32-v2_1]
platform = espressif32 @ 3.1.1 platform = espressif32 @ 3.2.0
board = ttgo-lora32-v21 board = ttgo-lora32-v21
build_flags = build_flags =
${env.build_flags} ${env.build_flags}
@ -126,7 +125,7 @@ lib_deps =
bblanchon/ArduinoJson@^6.21.3 bblanchon/ArduinoJson@^6.21.3
[env:ttgo-lora32-v2] [env:ttgo-lora32-v2]
platform = espressif32 @ 3.1.1 platform = espressif32 @ 3.2.0
board = ttgo-lora32-v2 board = ttgo-lora32-v2
build_flags = build_flags =
${env.build_flags} ${env.build_flags}
@ -143,7 +142,7 @@ lib_deps =
bblanchon/ArduinoJson@^6.21.3 bblanchon/ArduinoJson@^6.21.3
[env:ttgo-lora32-v1] [env:ttgo-lora32-v1]
platform = espressif32 @ 3.1.1 platform = espressif32 @ 3.2.0
board = ttgo-lora32-v1 board = ttgo-lora32-v1
build_flags = build_flags =
${env.build_flags} ${env.build_flags}
@ -160,7 +159,7 @@ lib_deps =
bblanchon/ArduinoJson@^6.21.3 bblanchon/ArduinoJson@^6.21.3
[env:Heltec-WiFi-v1] [env:Heltec-WiFi-v1]
platform = espressif32 @ 3.1.1 platform = espressif32 @ 3.2.0
board = heltec_wifi_kit_32 board = heltec_wifi_kit_32
build_flags = build_flags =
${env.build_flags} ${env.build_flags}
@ -177,7 +176,7 @@ lib_deps =
bblanchon/ArduinoJson@^6.21.3 bblanchon/ArduinoJson@^6.21.3
[env:Heltec-WiFi-v2] [env:Heltec-WiFi-v2]
platform = espressif32 @ 3.1.1 platform = espressif32 @ 3.2.0
board = heltec_wifi_kit_32_v2 board = heltec_wifi_kit_32_v2
build_flags = build_flags =
${env.build_flags} ${env.build_flags}

Wyświetl plik

@ -571,22 +571,6 @@ void displayInvalidGPS() {
writedisplaytext(" " + Tcall, nextTxInfo, "LAT: not valid", "LON: not valid", "SPD: --- CRS: ---", getSatAndBatInfo()); writedisplaytext(" " + Tcall, nextTxInfo, "LAT: not valid", "LON: not valid", "SPD: --- CRS: ---", getSatAndBatInfo());
} }
//#if defined(KISS_PROTOCOL)
//**
// *
// * @param TNC2FormatedFrame
// *
//void sendToTNC(const String& TNC2FormatedFrame) {
// if (tncToSendQueue){
// auto *buffer = new String();
// buffer->concat(TNC2FormatedFrame);
// if (xQueueSend(tncReceivedQueue, &buffer, (1000 / portTICK_PERIOD_MS)) != pdPASS){
// // remove buffer on error
// delete buffer;
// }
// }
//}
//#endif
#if defined(ENABLE_WIFI) #if defined(ENABLE_WIFI)
/** /**
* *