kopia lustrzana https://github.com/k3ng/k3ng_cw_keyer
forgot to add keyer_settings.h
rodzic
ccdfd95614
commit
c60db26cd8
|
@ -0,0 +1,216 @@
|
|||
// Initial and hardcoded settings
|
||||
#define initial_speed_wpm 26 // "factory default" keyer speed setting
|
||||
#define initial_sidetone_freq 600 // "factory default" sidetone frequency setting
|
||||
#define hz_high_beep 1500 // frequency in hertz of high beep
|
||||
#define hz_low_beep 400 // frequency in hertz of low beep
|
||||
#define initial_dah_to_dit_ratio 300 // 300 = 3 / normal 3:1 ratio
|
||||
#define initial_ptt_lead_time_tx1 10 // PTT lead time in mS
|
||||
#define initial_ptt_tail_time_tx1 10 // PTT tail time in mS
|
||||
#define initial_ptt_lead_time_tx2 10 // PTT lead time in mS
|
||||
#define initial_ptt_tail_time_tx2 10 // PTT tail time in mS
|
||||
#define initial_ptt_lead_time_tx3 10 // PTT lead time in mS
|
||||
#define initial_ptt_tail_time_tx3 10 // PTT tail time in mS
|
||||
#define initial_ptt_lead_time_tx4 10 // PTT lead time in mS
|
||||
#define initial_ptt_tail_time_tx4 10 // PTT tail time in mS
|
||||
#define initial_ptt_lead_time_tx5 10 // PTT lead time in mS
|
||||
#define initial_ptt_tail_time_tx5 10 // PTT tail time in mS
|
||||
#define initial_ptt_lead_time_tx6 10 // PTT lead time in mS
|
||||
#define initial_ptt_tail_time_tx6 10 // PTT tail time in mS
|
||||
#define initial_qrss_dit_length 1 // QRSS dit length in seconds
|
||||
#define initial_pot_wpm_low_value 13 // Potentiometer WPM fully CCW
|
||||
#define initial_pot_wpm_high_value 35 // Potentiometer WPM fully CW
|
||||
#define potentiometer_change_threshold 1 // don't change the keyer speed until pot wpm has changed more than this
|
||||
#define default_serial_baud_rate 115200
|
||||
#define send_buffer_size 150
|
||||
#define default_length_letterspace 3
|
||||
#define default_length_wordspace 7
|
||||
#define default_keying_compensation 0 // number of milliseconds to extend all dits and dahs - for QSK on boatanchors
|
||||
#define default_first_extension_time 0 // number of milliseconds to extend first sent dit or dah
|
||||
#define default_pot_full_scale_reading 1023
|
||||
#define default_weighting 50 // 50 = weighting factor of 1 (normal)
|
||||
#define default_ptt_hang_time_wordspace_units 0.0
|
||||
#define memory_area_start 30 // the eeprom location where memory space starts
|
||||
#define memory_area_end 1023 // the eeprom location where memory space ends
|
||||
#define winkey_c0_wait_time 1 // the number of milliseconds to wait to send 0xc0 byte after send buffer has been sent
|
||||
#define winkey_command_timeout_ms 5000
|
||||
#define winkey_discard_bytes_startup 3 // this is used if OPTION_WINKEY_DISCARD_BYTES_AT_STARTUP is enabled above
|
||||
#define winkey_xoff_threshold 20 // the number of chars in the buffer when we begin sending XOFFs
|
||||
#define winkey_xon_threshold 10 // the number of chars in the buffer below which we deactivate XOFF
|
||||
#define default_memory_repeat_time 3000 // time in milliseconds
|
||||
#define lcd_columns 16
|
||||
#define lcd_rows 2
|
||||
#define hell_pixel_microseconds 4025
|
||||
#define program_memory_limit_consec_spaces 1
|
||||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
|
||||
#ifdef FEATURE_COMMAND_BUTTONS
|
||||
#define analog_buttons_number_of_buttons 4
|
||||
#define analog_buttons_r1 10
|
||||
#define analog_buttons_r2 1
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(FEATURE_COMMAND_BUTTONS) && !defined(FEATURE_PS2_KEYBOARD) && !defined(FEATURE_USB_KEYBOARD) && !defined(FEATURE_COMMAND_LINE_INTERFACE) && !defined(FEATURE_WINKEY_EMULATION)
|
||||
#define number_of_memories byte(analog_buttons_number_of_buttons-1)
|
||||
#else
|
||||
#define number_of_memories byte(12)
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef FEATURE_LED_RING
|
||||
#define led_ring_low_limit 10
|
||||
#define led_ring_high_limit 50
|
||||
#endif //FEATURE_LED_RING
|
||||
|
||||
// Variable macros
|
||||
#define STRAIGHT 1
|
||||
#define IAMBIC_B 2
|
||||
#define IAMBIC_A 3
|
||||
#define BUG 4
|
||||
#define ULTIMATIC 5
|
||||
|
||||
#define PADDLE_NORMAL 0
|
||||
#define PADDLE_REVERSE 1
|
||||
|
||||
#define NORMAL 0
|
||||
#define BEACON 1
|
||||
#define COMMAND 2
|
||||
|
||||
#define OMIT_LETTERSPACE 1
|
||||
|
||||
#define SIDETONE_OFF 0
|
||||
#define SIDETONE_ON 1
|
||||
#define SIDETONE_PADDLE_ONLY 2
|
||||
|
||||
#define SENDING_NOTHING 0
|
||||
#define SENDING_DIT 1
|
||||
#define SENDING_DAH 2
|
||||
|
||||
#define SPEED_NORMAL 0
|
||||
#define SPEED_QRSS 1
|
||||
|
||||
#define CW 0
|
||||
#define HELL 1
|
||||
|
||||
#ifdef FEATURE_PS2_KEYBOARD
|
||||
#define PS2_KEYBOARD_NORMAL 0
|
||||
#endif //FEATURE_PS2_KEYBOARD
|
||||
|
||||
#define SERIAL_NORMAL 0
|
||||
#define SERIAL_WINKEY_EMULATION 1
|
||||
|
||||
#define SERIAL_SEND_BUFFER_SPECIAL_START 13
|
||||
#define SERIAL_SEND_BUFFER_WPM_CHANGE 14
|
||||
#define SERIAL_SEND_BUFFER_PTT_ON 15
|
||||
#define SERIAL_SEND_BUFFER_PTT_OFF 16
|
||||
#define SERIAL_SEND_BUFFER_TIMED_KEY_DOWN 17
|
||||
#define SERIAL_SEND_BUFFER_TIMED_WAIT 18
|
||||
#define SERIAL_SEND_BUFFER_NULL 19
|
||||
#define SERIAL_SEND_BUFFER_PROSIGN 20
|
||||
#define SERIAL_SEND_BUFFER_HOLD_SEND 21
|
||||
#define SERIAL_SEND_BUFFER_HOLD_SEND_RELEASE 22
|
||||
#define SERIAL_SEND_BUFFER_MEMORY_NUMBER 23
|
||||
#define SERIAL_SEND_BUFFER_SPECIAL_END 24
|
||||
|
||||
#define SERIAL_SEND_BUFFER_NORMAL 0
|
||||
#define SERIAL_SEND_BUFFER_TIMED_COMMAND 1
|
||||
#define SERIAL_SEND_BUFFER_HOLD 2
|
||||
|
||||
#ifdef FEATURE_WINKEY_EMULATION
|
||||
#define WINKEY_NO_COMMAND_IN_PROGRESS 0
|
||||
#define WINKEY_UNBUFFERED_SPEED_COMMAND 1
|
||||
#define WINKEY_UNSUPPORTED_COMMAND 2
|
||||
#define WINKEY_POINTER_COMMAND 3
|
||||
#define WINKEY_ADMIN_COMMAND 4
|
||||
#define WINKEY_PAUSE_COMMAND 5
|
||||
#define WINKEY_KEY_COMMAND 6
|
||||
#define WINKEY_SETMODE_COMMAND 7
|
||||
#define WINKEY_SIDETONE_FREQ_COMMAND 8
|
||||
#define WINKEY_ADMIN_COMMAND_ECHO 9
|
||||
#define WINKEY_BUFFERED_SPEED_COMMAND 10
|
||||
#define WINKEY_DAH_TO_DIT_RATIO_COMMAND 11
|
||||
#define WINKEY_KEYING_COMPENSATION_COMMAND 12
|
||||
#define WINKEY_FIRST_EXTENSION_COMMAND 13
|
||||
#define WINKEY_PTT_TIMES_PARM1_COMMAND 14
|
||||
#define WINKEY_PTT_TIMES_PARM2_COMMAND 15
|
||||
#define WINKEY_SET_POT_PARM1_COMMAND 16
|
||||
#define WINKEY_SET_POT_PARM2_COMMAND 17
|
||||
#define WINKEY_SET_POT_PARM3_COMMAND 18
|
||||
#define WINKEY_SOFTWARE_PADDLE_COMMAND 19
|
||||
#define WINKEY_CANCEL_BUFFERED_SPEED_COMMAND 20
|
||||
#define WINKEY_BUFFFERED_PTT_COMMMAND 21
|
||||
#define WINKEY_HSCW_COMMAND 22
|
||||
#define WINKEY_BUFFERED_HSCW_COMMAND 23
|
||||
#define WINKEY_WEIGHTING_COMMAND 24
|
||||
#define WINKEY_KEY_BUFFERED_COMMAND 25
|
||||
#define WINKEY_WAIT_BUFFERED_COMMAND 26
|
||||
#define WINKEY_POINTER_01_COMMAND 27
|
||||
#define WINKEY_POINTER_02_COMMAND 28
|
||||
#define WINKEY_POINTER_03_COMMAND 29
|
||||
#define WINKEY_FARNSWORTH_COMMAND 30
|
||||
#define WINKEY_MERGE_COMMAND 31
|
||||
#define WINKEY_MERGE_PARM_2_COMMAND 32
|
||||
#define WINKEY_SET_PINCONFIG_COMMAND 33
|
||||
#define WINKEY_EXTENDED_COMMAND 34
|
||||
#ifdef OPTION_WINKEY_2_SUPPORT
|
||||
#define WINKEY_SEND_MSG 35
|
||||
#endif //OPTION_WINKEY_2_SUPPORT
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_1_COMMAND 101
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_2_COMMAND 102
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_3_COMMAND 103
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_4_COMMAND 104
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_5_COMMAND 105
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_6_COMMAND 106
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_7_COMMAND 107
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_8_COMMAND 108
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_9_COMMAND 109
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_10_COMMAND 110
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_11_COMMAND 111
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_12_COMMAND 112
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_13_COMMAND 113
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_14_COMMAND 114
|
||||
#define WINKEY_LOAD_SETTINGS_PARM_15_COMMAND 115
|
||||
|
||||
#define HOUSEKEEPING 0
|
||||
#define SERVICE_SERIAL_BYTE 1
|
||||
#endif //FEATURE_WINKEY_EMULATION
|
||||
|
||||
#define AUTOMATIC_SENDING 0
|
||||
#define MANUAL_SENDING 1
|
||||
|
||||
#define ULTIMATIC_NORMAL 0
|
||||
#define ULTIMATIC_DIT_PRIORITY 1
|
||||
#define ULTIMATIC_DAH_PRIORITY 2
|
||||
|
||||
#ifdef FEATURE_WINKEY_EMULATION
|
||||
// alter these below to map alternate sidetones for Winkey interface protocol emulation
|
||||
#ifdef OPTION_WINKEY_2_SUPPORT
|
||||
#define WINKEY_SIDETONE_1 3759
|
||||
#define WINKEY_SIDETONE_2 1879
|
||||
#define WINKEY_SIDETONE_3 1252
|
||||
#define WINKEY_SIDETONE_4 940
|
||||
#define WINKEY_SIDETONE_5 752
|
||||
#define WINKEY_SIDETONE_6 625
|
||||
#define WINKEY_SIDETONE_7 535
|
||||
#define WINKEY_SIDETONE_8 469
|
||||
#define WINKEY_SIDETONE_9 417
|
||||
#define WINKEY_SIDETONE_10 375
|
||||
#else //OPTION_WINKEY_2_SUPPORT
|
||||
#define WINKEY_SIDETONE_1 4000
|
||||
#define WINKEY_SIDETONE_2 2000
|
||||
#define WINKEY_SIDETONE_3 1333
|
||||
#define WINKEY_SIDETONE_4 1000
|
||||
#define WINKEY_SIDETONE_5 800
|
||||
#define WINKEY_SIDETONE_6 666
|
||||
#define WINKEY_SIDETONE_7 571
|
||||
#define WINKEY_SIDETONE_8 500
|
||||
#define WINKEY_SIDETONE_9 444
|
||||
#define WINKEY_SIDETONE_10 400
|
||||
#endif //OPTION_WINKEY_2_SUPPORT
|
||||
#endif //FEATURE_WINKEY_EMULATION
|
||||
|
||||
#define PRINTCHAR 0
|
||||
#define NOPRINT 1
|
Ładowanie…
Reference in New Issue