Revert "implement CSE/SPD"

This reverts commit 9345669000.
pull/20/head
Federico Nabarlats 2020-07-21 20:15:37 -03:00
rodzic 9345669000
commit b13bc14747
2 zmienionych plików z 2 dodań i 29 usunięć

Wyświetl plik

@ -34,9 +34,6 @@ char latitude[9];
char longtitude[10];
char symbolTable = '/';
char symbol = 'n';
char speed[4] = "000";
char course[4] = "000";
uint8_t power = 10;
uint8_t height = 10;
@ -178,16 +175,6 @@ void APRS_setDirectivity(int s) {
}
}
void APRS_setCourse(int s){
int temp = s;
sprintf(course, "%03d", s);
}
void APRS_setSpeed(int s){
int temp = s;
sprintf(speed, "%03d", s);
}
void APRS_printSettings() {
Serial.println(F("LibAPRS Settings:"));
Serial.print(F("Callsign: ")); Serial.print(CALL); Serial.print(F("-")); Serial.println(CALL_SSID);
@ -197,7 +184,7 @@ void APRS_printSettings() {
Serial.print(F("Message dst: ")); if (message_recip[0] == 0) { Serial.println(F("N/A")); } else { Serial.print(message_recip); Serial.print(F("-")); Serial.println(message_recip_ssid); }
Serial.print(F("TX Preamble: ")); Serial.println(custom_preamble);
Serial.print(F("TX Tail: ")); Serial.println(custom_tail);
Serial.print(F("Symbol table: ")); if (symbolTable = '/') { Serial.println(F("Normal")); } else { Serial.println(F("Alternate")); }
Serial.print(F("Symbol table: ")); if (symbolTable == '/') { Serial.println(F("Normal")); } else { Serial.println(F("Alternate")); }
Serial.print(F("Symbol: ")); Serial.println(symbol);
Serial.print(F("Power: ")); if (power < 10) { Serial.println(power); } else { Serial.println(F("N/A")); }
Serial.print(F("Height: ")); if (height < 10) { Serial.println(height); } else { Serial.println(F("N/A")); }
@ -235,15 +222,10 @@ void APRS_sendPkt(void *_buffer, size_t length) {
void APRS_sendLoc(void *_buffer, size_t length) {
size_t payloadLength = 20+length;
bool usePHG = false;
bool useCS = false;
if (power < 10 && height < 10 && gain < 10 && directivity < 9) {
usePHG = true;
payloadLength += 7;
}
else if ( speed[2] != '0' ){
useCS = true;
payloadLength += 7;
}
uint8_t *packet = (uint8_t*)malloc(payloadLength);
uint8_t *ptr = packet;
packet[0] = '=';
@ -264,13 +246,6 @@ void APRS_sendLoc(void *_buffer, size_t length) {
packet[26] = directivity+48;
ptr+=7;
}
if (useCS){
memcpy(ptr, course, 3);
packet[23] = '/';
ptr += 4;
memcpy(ptr, speed, 3);
ptr += 3;
}
if (length > 0) {
uint8_t *buffer = (uint8_t *)_buffer;
memcpy(ptr, buffer, length);
@ -370,4 +345,4 @@ int freeMemory() {
free_memory += freeListSize();
}
return free_memory;
}
}

Wyświetl plik

@ -28,8 +28,6 @@ void APRS_setPower(int s);
void APRS_setHeight(int s);
void APRS_setGain(int s);
void APRS_setDirectivity(int s);
void APRS_setCourse(int s);
void APRS_setSpeed(int s);
void APRS_sendPkt(void *_buffer, size_t length);
void APRS_sendLoc(void *_buffer, size_t length);