mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-19 18:56:10 -05:00
cda86a1b12
The files are not split into .cpp and .h files. The main file ubitxxxx.cpp will have the main routines to control the radio, initialization and main loop. The user interface is implemented in ubitx_ui.cpp, the code for setup/calibration routines is in setup.cpp. Nano gui, keyer, morse.cpp (morse reader) are all libaries that have minimum dependencies on each other.
4 lines
159 B
C
4 lines
159 B
C
//sends out morse code at the speed set by cwSpeed
|
|
extern int cwSpeed; //this is actuall the dot period in milliseconds
|
|
void morseText(char *text);
|