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