don't print DE CALLSIGN if no BPF

pull/247/head
alanbjohnston 3 years ago committed by GitHub
parent 9c7598c48d
commit 33bf38c54e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -222,7 +222,6 @@ void loop() {
if (mode == AFSK) {
send_aprs_packet();
} else if (mode == CW) {
Serial.printf("DE %s \n", callsign);
send_cw();
}
}
@ -491,7 +490,8 @@ void send_cw() {
if (debug_mode)
Serial.println("Sending CW packet!");
Serial.printf("DE %s \n", callsign);
strcpy(telem, de);
strcat(telem, callsign);
strcat(telem, space);

Loading…
Cancel
Save

Powered by TurnKey Linux.