将< termios.h>和< ASM/termios.h>包含在同一项目中

0tdrvxhp  于 2022-09-19  发布在  iOS
关注(0)|答案(4)|浏览(273)

我想实现的目标:我想为一些类似tty*UARTMap终端设置定制的baud rate值。

方法:到目前为止,我发现的唯一方法是使用位于in1d4d1e头中的struct termios2结构(正如前面提到的here,第一个答案)。

到目前为止,我的解决方案运行得很好,但现在我需要使用一些函数:

speed_t cfgetispeed(const struct termios *);
int     tcdrain(int);
int     tcflow(int, int);
int     tcflush(int, int);
int     tcgetattr(int, struct termios *);
pid_t   tcgetsid(int);
int     tcsendbreak(int, int);
int     tcsetattr(int, int, struct termios *);

问题是,在<asm/termios.h>中没有这样的函数,我需要包含<termios.h>才能使用它们。

问题:如果我同时包含两个头文件(<asm/termios.h><termios.h>),编译器会因为函数和结构重新声明而尖叫,他是对的。

我如何才能在不使用一些晦涩的做法(如将一个头 Package 在名称空间中,如前面提到的here)的情况下解决此问题?

0wi1tuuw

0wi1tuuw1#

我如何才能在不使用一些晦涩的做法(如将一个头 Package 在名称空间中,如前面提到的here)的情况下解决此问题?

如果您觉得名称空间晦涩难懂,我不知道您会怎么称呼它:


# define termios asmtermios

# include <asm/termios.h>

# undef  termios

# include <termios.h>

无论如何,这也能让你摆脱error: redefinition of 'struct termios'

g0czyy6m

g0czyy6m2#

我也遇到了类似的问题--我想要定义为termios2TCGETS2BOTHER的定制波特率支持,同时仍然使用传统的Termios调用。我本能地将Termios2包在它自己的compilation unit中,没有任何问题。所以我的结构看起来是这样的:

Serial_driver.c/.h


# include <termios.h>

# include <fcntl.h>

# include <dirent.h>

int open_port(int fd, int baudrate, eParitySetting parity, int numStopBits)
{
  if(baudrate_is_non_standard(baudrate)
    setNonStandardBaudRateTermios(fd, baudrate, parity, numStopBits);
  else
    //all the normal tcgetattr/cfsetospeed/tcsetattr
}

int do_other_things(void)
{
  //all the normal tcsendbreak/tcflush/etc things
}

Serial_Driver_abr.c/.h


# include <asm/termios.h> /* asm gives us the all important BOTHER and TCGETS2 */

# include <fcntl.h>

# include <dirent.h>

# include <stropts.h> /* Oddly, for ioctl, because ioctl.h causes include dramas */

setNonStandardBaudRateTermios(int fd, int baudrate, eParitySetting parity, int numStopBits)
{
  //All the termios2/ioctl/TCGETS2/BOTHER things
}

对我来说很管用。

e4yzc0pl

e4yzc0pl3#

我用旧的ARM交叉编译器遇到了同样的问题,但找到了最新的,gcc-arm-10.2-2020.11-x86_64-arm-none-linux-gnueabihf,用不同的头文件解决了这个问题。以下是我的代码:

[uart_config.c]

# include <asm/termbits.h>

# include <sys/ioctl.h>

/* functions */
int uart_config_baudrate(int fd)
{
    struct termios2 tio;

    ioctl(fd, TCGETS2, &tio);
    tio.c_cflag &= ~CBAUD;
    tio.c_cflag |= BOTHER;
    tio.c_ispeed = MY_SPECIAL_BAUDRATE_NUMBER;
    tio.c_ospeed = MY_SPECIAL_BAUDRATE_NUMBER;
    return ioctl(fd, TCSETS2, &tio);
}

[main.c]
static int init_uart(void)
{
    struct termios tp;
    int rc;

    memset(&tp, 0, sizeof(tp));
    tp.c_cflag = MY_SPECIAL_BAUDRATE | CS8 | CLOCAL | CREAD | PARENB | PARODD;
    tp.c_iflag = IGNPAR;
    tp.c_oflag = 0;

    tp.c_lflag = 0;     /* set input mode to non-canonical */

    tp.c_cc[VTIME] = 0; /* inter-character timer unused */
    tp.c_cc[VMIN] = 1;  /* blocking read until 5 chars received */

    tcflush(fd, TCIFLUSH);
    rc = tcsetattr(fd, TCSANOW, &tp);

    return rc;
}

int main()
{
    int fd;

    fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY);
    init_uart(fd);  // add your error handling
    uart_config_baudrate(fd); // add your error handling
    ...
}
nafvub8i

nafvub8i4#

我不认为这些答案中的任何一个正确地解决了这个问题(它们都相当老套)。Glibc的源代码让您很好地了解了如何非常轻松地实现这些功能:

例如,tcdrain是一个简单的ioctl调用:

ioctl (fd, TCSBRK, 1)

相关问题