我想将tcdrain
与termios2一起使用。
问题是该方法在termios.h
中定义,但在asm/termbits.h
中未定义。
将termios.h
与asm/termbits.h
一起使用是not possible,因为编辑错误会在两个文件中定义一些结构。
背景:我希望在tcdrain
之后调用write
来控制我的串行传输,以确保在继续执行程序之前已传输数据。我还想使用自定义串行速度(因此,使用termios2
)。
如何将tcdrain与termios2一起使用?