Change of destination address with approval of Bob WB4APR

pull/67/head refs/heads/master-2021-09-04T205819
Rysiek Labus 2021-09-04 22:54:19 +02:00
rodzic e2e1dd722d
commit 9232352c3c
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -242,9 +242,9 @@ void prepareAPRSFrame(){
outString += Tcall;
if (relay_path){
outString += ">APLS01," + relay_path + ":!";
outString += ">APLO01," + relay_path + ":!";
}else{
outString += ">APLS01:!";
outString += ">APLO01:!";
}
if(gps_state && gps.location.isValid()){
@ -493,7 +493,7 @@ void sendTelemetryFrame() {
String telemetryEquations = String(":") + Tcall + ":EQNS.0,5.1,3000,0,10,0,0,10,0,0,28,3000,0,10,0";
String telemetryData = String("T#MIC") + String(b_volt) + ","+ String(b_in_c) + ","+ String(b_out_c) + ","+ String(ac_volt) + ","+ String(ac_c) + ",00000000";
String telemetryBase = "";
telemetryBase += Tcall + ">APLS01" + ":";
telemetryBase += Tcall + ">APLO01" + ":";
sendToTNC(telemetryBase + telemetryParamsNames);
sendToTNC(telemetryBase + telemetryUnitNames);
sendToTNC(telemetryBase + telemetryEquations);