2

全部,

如您所知,在调试嵌入式系统时,我们通常通过 uart 控制台与目标设备通信。现在我想在linux内核中测试“Magic sysrq”功能,它需要向控制台驱动程序发送一个“break”。我发现“中断”是什么意思,似乎我需要将 TX 线的电气保持在低电平一段时间。
我的问题是如何从 APUE(unix 中的高级程序)发送这个中断“字符”,我必须调用函数“tcsendbreak”,这意味着我必须编写一个程序。如果我可以使用一些特殊的键来发送它,我会徘徊,比如 ^C 等。
不要使用“echo”x > /proc/sysrq-trigger“”,我知道,只是在其他方式上讨论:)

这是我的终端设置,我用 ckermit 与目标交谈。

stty -a < /dev/ttyUSB0 
speed 115200 baud; rows 0; columns 0; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>;
swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z;
rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 hupcl -cstopb cread clocal -crtscts
ignbrk -brkint ignpar -parmrk -inpck -istrip -inlcr -igncr -icrnl -ixon -ixoff -iuclc 
-ixany -imaxbel -iutf8
-opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
-isig -icanon -iexten -echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl  
echoke
4

1 回答 1

6

文档来看,它看起来Control-\ B会在 C-Kermit 中发送中断。

其他方法...

发送休息的一种方法是:

  1. 切换到较低的速度
  2. 发送 Nul (0) 或 @ (40 16 ) - 具有许多连续 0 位的字符将产生称为 BREAK 的帧错误。
  3. 切换回原来的速度

如您所述,另一种方法是使用<termios.h>线路控制功能。

#include <termios.h>

int tcsendbreak(int fildes, int duration); // "duration" is ignored
于 2012-05-16T03:25:58.477 回答