]>
Commit | Line | Data |
---|---|---|
ae0ea72e SC |
1 | /* Remote Serial support interface definitions for GDB, the GNU Debugger. |
2 | Copyright 1992 Free Software Foundation, Inc. | |
3 | ||
4 | This file is part of GDB. | |
5 | ||
6 | This program is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2 of the License, or | |
9 | (at your option) any later version. | |
10 | ||
11 | This program is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with this program; if not, write to the Free Software | |
18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | ||
20 | /* Return a sensible default name for a serial device, something which | |
21 | can be used as an argument to serial_open */ | |
22 | ||
23 | CONST char *EXFUN(serial_default_name,(void)); | |
24 | ||
25 | /* Try to open the serial device "name", return 1 if ok, 0 if not. */ | |
26 | ||
27 | int EXFUN(serial_open,(CONST char *name)); | |
28 | ||
29 | /* Turn the port into raw mode */ | |
30 | ||
31 | void EXFUN(serial_raw,(void)); | |
32 | ||
33 | ||
34 | /* Turn the port into normal mode */ | |
35 | ||
36 | void EXFUN(serial_normal,(void)); | |
37 | ||
38 | ||
39 | /* Read one char from the serial device with timeout, return char, and | |
40 | set ok if ok */ | |
41 | ||
42 | int EXFUN(serial_timedreadchar,(int to , int *ok)); | |
43 | ||
44 | ||
45 | /* Set the baudrate to the value supplied, and return 1, or fail and | |
46 | return 0 */ | |
47 | ||
48 | int EXFUN(serial_setbaudrate,(int to)); | |
49 | ||
50 | /* Return the next rate in the sequence, or return 0 for a fail*/ | |
51 | ||
52 | int EXFUN(serial_nextbaudrate,(int rate)); | |
53 | ||
54 | ||
55 | /* Write some chars to the device, return 1 if ok, 0 if not */ | |
56 | ||
57 | int EXFUN(serial_write,( CONST char *str , int len)); | |
58 | ||
59 | ||
60 | /* Close the serial port */ | |
61 | ||
62 | int EXFUN(serial_close,(void)); |