blob: 107ec1155f51b6d5208615246408bdd7d5441297 [file] [log] [blame]
William Hubbsc6e3fd22010-10-07 13:20:02 -05001/* speakup_acntpc.h - header file for speakups Accent-PC driver. */
2
3#define SYNTH_IO_EXTENT 0x02
4
5#define SYNTH_CLEAR 0x18 /* stops speech */
6
7 /* Port Status Flags */
8#define SYNTH_READABLE 0x01 /* mask for bit which is nonzero if a
Aleksei Fedotov13d825e2015-08-14 22:34:37 +03009 * byte can be read from the data port
10 */
William Hubbsc6e3fd22010-10-07 13:20:02 -050011#define SYNTH_WRITABLE 0x02 /* mask for RDY bit, which when set to
Aleksei Fedotov13d825e2015-08-14 22:34:37 +030012 * 1, indicates the data port is ready
13 * to accept a byte of data.
14 */
William Hubbsc6e3fd22010-10-07 13:20:02 -050015#define SYNTH_QUIET 'S' /* synth is not speaking */
16#define SYNTH_FULL 'F' /* synth is full. */
Justin P. Mattock83414d52012-07-09 07:30:27 -070017#define SYNTH_ALMOST_EMPTY 'M' /* synth has less than 2 seconds of text left */
William Hubbsc6e3fd22010-10-07 13:20:02 -050018#define SYNTH_SPEAKING 's' /* synth is speaking and has a fare way to go */