fix destination

pull/182/head
alanbjohnston 4 years ago committed by GitHub
parent c708e43110
commit 85774ce5b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -479,8 +479,7 @@ void config_telem() {
set_pin(AUDIO_OUT_PIN);
const char destination[] = "APCSS";
char destination[] = "APCSS";
set_callsign(callsign, destination);
set_lat_lon();
@ -3838,8 +3837,10 @@ void prompt_for_input() {
if (strlen(serial_string) > 0) {
strcpy(callsign, serial_string);
if (mode == AFSK)
set_callsign(callsign);
if (mode == AFSK) {
char destination[] = "APCSS";
set_callsign(callsign, destination);
}
Serial.println("Callsign updated!");
} else
Serial.println("Callsign not updated!");

Loading…
Cancel
Save

Powered by TurnKey Linux.