File: keyer.h

package info (click to toggle)
cwirc 2.0.0-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 640 kB
  • ctags: 589
  • sloc: ansic: 5,423; makefile: 299
file content (31 lines) | stat: -rw-r--r-- 948 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Types */
struct cwirc_keyer_state
{
  T_BOOL keyer_initialized;	/* Put 0 here for the first call to the keyer */
  T_BOOL prev_dit;
  T_BOOL prev_dah;
  int last_element;		/* -1 -> nothing, 0 -> dit, 1 -> dah */
  int current_element;		/* -1 -> nothing, 0 -> dit, 1 -> dah */
  T_BOOL insert_inverted_element;
  int iambic_in_element;	/* 0 -> none, 1 -> squeezed, 2 -> released */
  T_BOOL paddles_squeezed_after_mid_element;
  double beep_timeout;
  double mid_element_timeout;
  double element_timeout;
  double delay_timeout;
  int delay_type;		/* 0 -> none, 1 -> inter-char spacing,
				   2 -> inter-word spacing */
};



/* Variables */
extern char cwirc_available_iambic_modes[][10];



/* Prototypes */
T_BOOL cwirc_run_keyer(struct cwirc_keyer_state *is,T_BOOL dit,T_BOOL dah,
	int wpm,int iambicmode,T_BOOL midelementmodeB,T_BOOL ditmemory,
	T_BOOL dahmemory,T_BOOL autocharspacing,T_BOOL autowordspacing,
	int weight,double ticklen);