Signed-off-by: Pali Rohár <pali@xxxxxxxxxx> --- man2/ioctl_tty.2 | 60 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/man2/ioctl_tty.2 b/man2/ioctl_tty.2 index 0b0083c671a7..9d394572ae93 100644 --- a/man2/ioctl_tty.2 +++ b/man2/ioctl_tty.2 @@ -750,6 +750,66 @@ main(void) close(fd); } .EE +.PP +Get or set arbitrary baudrate on the serial port. +.PP +.EX +#include <stdio.h> +#include <stdlib.h> +#include <sys/types.h> +#include <fcntl.h> +#include <unistd.h> +#include <sys/ioctl.h> +#include <asm/termbits.h> + +int +main(int argc, char *argv[]) +{ +#if !defined(TCGETS2) || !defined(TCSETS2) || !defined(BOTHER) + fprintf(stderr, "TCGETS2, TCSETS2 or BOTHER is unsupported\\n"); + return 1; +#else + struct termios2 tio2; + int fd, rc; + + if (argc != 2 && argc != 3) { + fprintf(stderr, "Usage: %s device [new_baudrate]\\n", argv[0]); + return 1; + } + + fd = open(argv[1], O_RDWR | O_NONBLOCK | O_NOCTTY); + if (fd < 0) { + perror("open"); + return 1; + } + + rc = ioctl(fd, TCGETS2, &tio2); + if (rc) { + perror("TCGETS2"); + close(fd); + return 1; + } + + printf("%u\\n", tio2.c_ospeed); + + if (argc == 3) { + tio2.c_cflag &= ~CBAUD; + tio2.c_cflag |= BOTHER; + tio2.c_ospeed = tio2.c_ispeed = atoi(argv[2]); + + rc = ioctl(fd, TCSETS2, &tio2); + if (rc) { + perror("TCSETS2"); + close(fd); + return 1; + } + } + + close(fd); + return 0; +#endif +} +.EE .SH SEE ALSO .BR ldattach (1), .BR ioctl (2), -- 2.20.1