|
|
|
|
@ -483,6 +483,8 @@ void send_aprs_packet() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void send_cw() {
|
|
|
|
|
if (filter_present) { // only transmit CW packet if BPF filter is present
|
|
|
|
|
|
|
|
|
|
char de[] = " DE ";
|
|
|
|
|
char telem[1000];
|
|
|
|
|
char space[] = " ";
|
|
|
|
|
@ -497,9 +499,9 @@ void send_cw() {
|
|
|
|
|
if (debug_mode)
|
|
|
|
|
print_string(telem);
|
|
|
|
|
// Serial.println(strlen(telem));
|
|
|
|
|
if (filter_present) // only transmit CW packet if BPF filter is present
|
|
|
|
|
transmit_string(telem);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void transmit_on() {
|
|
|
|
|
if ((mode == SSTV) || (mode == AFSK)) { // this isn't quite right for APRS - should only do when sending APRS packet
|
|
|
|
|
|