2021-08-12 07:42:14 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2022-08-05 21:50:08 +00:00
|
|
|
extern const uint32_t B0;
|
|
|
|
extern const uint32_t B50;
|
|
|
|
extern const uint32_t B75;
|
|
|
|
extern const uint32_t B110;
|
|
|
|
extern const uint32_t B134;
|
|
|
|
extern const uint32_t B150;
|
|
|
|
extern const uint32_t B200;
|
|
|
|
extern const uint32_t B300;
|
|
|
|
extern const uint32_t B600;
|
|
|
|
extern const uint32_t B1200;
|
|
|
|
extern const uint32_t B1800;
|
|
|
|
extern const uint32_t B2400;
|
|
|
|
extern const uint32_t B4800;
|
|
|
|
extern const uint32_t B9600;
|
|
|
|
extern const uint32_t B19200;
|
|
|
|
extern const uint32_t B38400;
|
|
|
|
extern const uint32_t B57600;
|
|
|
|
extern const uint32_t B115200;
|
|
|
|
extern const uint32_t B230400;
|
|
|
|
extern const uint32_t B500000;
|
|
|
|
extern const uint32_t B576000;
|
|
|
|
extern const uint32_t B1000000;
|
|
|
|
extern const uint32_t B1152000;
|
|
|
|
extern const uint32_t B1500000;
|
|
|
|
extern const uint32_t B2000000;
|
|
|
|
extern const uint32_t B2500000;
|
|
|
|
extern const uint32_t B3000000;
|
|
|
|
extern const uint32_t B3500000;
|
|
|
|
extern const uint32_t B4000000;
|
2021-08-12 07:42:14 +00:00
|
|
|
|
2023-06-09 06:44:03 +00:00
|
|
|
#define B0 0
|
|
|
|
#define B50 B50
|
|
|
|
#define B75 B75
|
|
|
|
#define B110 B110
|
|
|
|
#define B134 B134
|
|
|
|
#define B150 B150
|
|
|
|
#define B200 B200
|
|
|
|
#define B300 B300
|
|
|
|
#define B600 B600
|
|
|
|
#define B1200 B1200
|
|
|
|
#define B1800 B1800
|
|
|
|
#define B2400 B2400
|
|
|
|
#define B4800 B4800
|
|
|
|
#define B9600 B9600
|
|
|
|
#define B19200 B19200
|
|
|
|
#define B38400 B38400
|
|
|
|
#define B57600 B57600
|
|
|
|
#define B115200 B115200
|
|
|
|
#define B230400 B230400
|
|
|
|
#define B500000 B500000
|
|
|
|
#define B576000 B576000
|
|
|
|
#define B1000000 B1000000
|
|
|
|
#define B1152000 B1152000
|
|
|
|
#define B1500000 B1500000
|
|
|
|
#define B2000000 B2000000
|
|
|
|
#define B2500000 B2500000
|
|
|
|
#define B3000000 B3000000
|
|
|
|
#define B3500000 B3500000
|
|
|
|
#define B4000000 B4000000
|
2021-08-12 07:42:14 +00:00
|
|
|
|
2023-06-09 06:44:03 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
2021-08-12 07:42:14 +00:00
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_BAUD_H_ */
|