Skip to content

Commit

Permalink
Update k3ng_keyer.ino (#108)
Browse files Browse the repository at this point in the history
Adds a display of the current tx's lead and tail times, plus the hang time (in wordspace units) plus the memory repeat time.
  • Loading branch information
VK2EFL authored Mar 10, 2021
1 parent f314fb7 commit acf6305
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion k3ng_keyer/k3ng_keyer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15652,7 +15652,20 @@ void serial_status(PRIMARY_SERIAL_CLS * port_to_use) {
}
#endif


port_to_use->print(F("Tx")); // show the ptt lead time for the current tx
port_to_use->print(configuration.current_tx);
port_to_use->print(F(" lead time: "));
port_to_use->println(configuration.ptt_lead_time[configuration.current_tx - 1]);
port_to_use->print(F("Tx")); // show the ptt tail time for the current tx
port_to_use->print(configuration.current_tx);
port_to_use->print(F(" tail time: "));
port_to_use->println(configuration.ptt_tail_time[configuration.current_tx - 1]);

port_to_use->print(F("PTT hang time: ")); // show the hang time
port_to_use->print(ptt_hang_time_wordspace_units);
port_to_use->println(F(" wordspace units"));
port_to_use->print(F("Memory repeat time: ")); // show the memory repeat time
port_to_use->println(configuration.memory_repeat_time);

#ifdef FEATURE_MEMORIES
serial_status_memories(port_to_use);
Expand Down

0 comments on commit acf6305

Please sign in to comment.