gpt4 book ai didi

linux - 调试嵌入式系统时如何发送 "break"?

转载 作者:太空狗 更新时间:2023-10-29 11:33:50 24 4
gpt4 key购买 nike

全部,

如您所知,在调试嵌入式系统时,我们通常通过 uart 控制台与目标设备进行通信。现在我想在 linux 内核中测试“Magic sysrq”功能,它需要向控制台驱动程序发送一个“break”。我找到了“break”是什么意思,看来我需要将 TX-line 电气电平保持一段时间。
我的问题是如何从 APUE(Unix 中的高级程序)发送这个中断“字符”,我必须调用函数“tcsendbreak”,这意味着我必须编写一个程序。我想知道我是否可以使用一些特殊的键来发送它,比如 ^C 等。
不要 methon "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

最佳答案

来自 the documentation , 它看起来像 Control-\ B将在 C-Kermit 中发送中断。

其他方式...

One way to send a break is to:

  1. Switch to a lower speed
  2. Send a Nul (0) or an @ (4016) -- a character with many contiguous 0 bits will produce the framing error called a BREAK.
  3. Switch back to the original speed

As you noted, the other way is to use the <termios.h> line control functions.

#include <termios.h>

int tcsendbreak(int fildes, int duration); // "duration" is ignored

关于linux - 调试嵌入式系统时如何发送 "break"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10611564/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com