Skip to content

Commit

Permalink
Update keyer_settings.h (#88)
Browse files Browse the repository at this point in the history
Fixed a syntax error. Only became evident if using Winkeyer emulation.
  • Loading branch information
VK2EFL committed Feb 6, 2020
1 parent 5494678 commit dcd5775
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions k3ng_keyer/keyer_settings.h
Expand Up @@ -99,7 +99,7 @@


#ifdef FEATURE_WINKEY_EMULATION
#ifdef OPTION_WINKEY_UCXLOG_9600_BAUD || defined(FEATURE_SO2R_BASE)
#if defined(OPTION_WINKEY_UCXLOG_9600_BAUD) || defined(FEATURE_SO2R_BASE)
#define WINKEY_DEFAULT_BAUD 9600
#else
#define WINKEY_DEFAULT_BAUD 1200
Expand Down Expand Up @@ -144,8 +144,6 @@

#endif //FEATURE_WINKEY_EMULATION



#define PRIMARY_SERIAL_PORT &Serial
#define PRIMARY_SERIAL_PORT_BAUD 115200 // This applies only when the port is in Command Line Interface mode. In Winkey mode it will default to 1200.

Expand Down Expand Up @@ -200,7 +198,7 @@
#define FEATURE_INTERNET_LINK_DEFAULT_RCV_UDP_PORT 8888
#define FEATURE_INTERNET_LINK_BUFFER_TIME_MS 500

#if defined(FEATURE_4x4_KEYPAD)|| defined (FEATURE_3x4_KEYPAD)
#if defined(FEATURE_4x4_KEYPAD) || defined(FEATURE_3x4_KEYPAD)
#define KEYPAD_ROWS 4 //KeyPad Rows
#if defined(FEATURE_4x4_KEYPAD)
#define KEYPAD_COLS 4 //keypad Columns
Expand All @@ -219,7 +217,7 @@
#define mem10 9
#define mem11 10
#define mem12 11
#endif //#if defined(FEATURE_4x4_KEYPAD)|| defined (FEATURE_3x4_KEYPAD)
#endif //#if defined(FEATURE_4x4_KEYPAD) || defined(FEATURE_3x4_KEYPAD)

#define initial_sidetone_mode 1 // Sidetone mode, 0=OFF, 1=ON, 2=PADDLE_ONLY

Expand Down

0 comments on commit dcd5775

Please sign in to comment.