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 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
/* termios baud rate selection definitions. Linux/alpha version.
Copyright (C) 2019-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library. If not, see
<https://www.gnu.org/licenses/>. */
#ifndef _TERMIOS_H
# error "Never include <bits/termios-cbaud.h> directly; use <termios.h> instead."
#endif
#ifdef __USE_MISC
# define CBAUD 000000037
# define CBAUDEX 000000000
# define CIBAUD 007600000
# define IBSHIFT 16
#endif
#define __B57600 00020
#define __B115200 00021
#define __B230400 00022
#define __B460800 00023
#define __B500000 00024
#define __B576000 00025
#define __B921600 00026
#define __B1000000 00027
#define __B1152000 00030
#define __B1500000 00031
#define __B2000000 00032
#define __B2500000 00033
#define __B3000000 00034
#define __B3500000 00035
#define __B4000000 00036
#define __BOTHER 00037
|