- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 pyserial
为网络设备编写客户端,它在登录设备后和在设备上收到提示之前挂起几秒钟。跟踪线上的字节,我看到以下转义序列是造成延迟的原因:
0003a0 73 65 20 6c 65 76 65 6c 0d 0a 0d 1b 5b 39 39 39 |se level....[999|
0003b0 39 42 0d 1b 5b 39 39 39 39 42 1b 5a 20 20 1b 5b |9B..[9999B.Z .[|
0003c0 36 6e 0d 0d 0d 0d 5b 61 64 6d 69 6e 40 73 77 69 |6n....[admin@swi|
0003d0 74 63 68 5d 20 3e 20 20 20 20 20 20 20 20 20 20 |tch] > |
当使用 screen
连接到设备时,不会出现延迟,因为 screen
正在正确响应。
0003a0 73 65 20 6c 65 76 65 6c 0d 0a 0d 1b 5b 39 39 39 |se level....[999|
0003b0 39 42 0d 1b 5b 39 39 39 39 42 1b 5a 20 |9B..[9999B.Z |
---=== WRITE ===---
000000 1b 5b 3f 31 3b 32 63 |.[?1;2c |
---=== READ ===---
000000 20 1b 5b 36 6e | .[6n |
---=== WRITE ===---
000000 1b 5b 35 37 3b 33 52 |.[57;3R |
---=== READ ===---
000000 1b 5b 34 6c 1b 5b 32 30 6c 1b 5b 3f 34 37 6c 1b |.[4l.[20l.[?47l.|
000010 5b 3f 37 68 1b 5b 3f 35 6c 1b 5b 3f 32 35 68 1b |[?7h.[?5l.[?25h.|
000020 5b 48 1b 5b 39 39 39 39 42 1b 5b 36 6e |[H.[9999B.[6n |
---=== WRITE ===---
000000 1b 5b 35 37 3b 31 52 |.[57;1R |
---=== READ ===---
000000 1b 5b 48 1b 5b 39 39 39 39 42 1b 44 1b 5b 39 39 |.[H.[9999B.D.[99|
000010 39 39 41 1b 5b 36 6e |99A.[6n |
---=== WRITE ===---
000000 1b 5b 31 3b 31 52 |.[1;1R |
---=== READ ===---
000000 1b 5b 48 1b 5b 39 39 39 39 43 1b 5b 36 6e |.[H.[9999C.[6n |
---=== WRITE ===---
000000 1b 5b 31 3b 31 34 31 52 |.[1;141R |
---=== READ ===---
000000 1b 5b 48 c4 9b 48 1b 5b 36 6e 0d 20 20 20 |.[H..H.[6n. |
---=== WRITE ===---
000000 1b 5b 31 3b 33 52 |.[1;3R |
---=== READ ===---
000000 1b 5b 48 1b 5b 39 39 39 39 43 1b 5b 36 6e 20 1b |.[H.[9999C.[6n .|
---=== WRITE ===---
000000 1b 5b 31 3b 31 34 31 52 |.[1;141R |
---=== READ ===---
000000 5b 36 6e 20 1b 5b 36 6e |[6n .[6n |
---=== WRITE ===---
000000 1b 5b 31 3b 31 34 32 52 1b 5b 32 3b 32 52 |.[1;142R.[2;2R |
---=== READ ===---
000000 1b 5b 33 3b 35 72 1b 5b 48 1b 5b 36 6e 0a 0a |.[3;5r.[H.[6n.. |
---=== WRITE ===---
000000 1b 5b 31 3b 31 52 |.[1;1R |
---=== READ ===---
000000 0a 0a 0a 0a 0a 1b 5b 36 6e 1b 5b |......[6n.[ |
---=== WRITE ===---
000000 1b 5b 35 3b 31 52 |.[5;1R |
---=== READ ===---
000000 39 39 39 39 42 1b 5b 36 6e 1b 5b 72 |9999B.[6n.[r |
---=== WRITE ===---
000000 1b 5b 35 3b 31 52 |.[5;1R |
---=== READ ===---
000000 1b 5b 31 3b 39 39 39 39 72 0d 0d 0d 1b 5b 39 39 |.[1;9999r....[99|
000010 39 39 42 5b 61 64 6d 69 6e 40 73 77 69 74 63 68 |99B[admin@switch|
000020 5d 20 3e 20 |] > |
这一系列转义序列到底在做什么,在我的客户端中处理这个问题的最佳方法是什么?
from asyncio import Protocol, get_event_loop
from serial.aio import create_serial_connection
class Serial(Protocol):
def connection_made(self, transport):
self.transport = transport
def data_received(self, data):
self.buffer += data.decode("utf-8")
self.handle()
def send(self, line):
self.transport.write("{}\r\n".format(line).encode())
loop = get_event_loop()
coro = create_serial_connection(loop, Serial, "/dev/ttyUSB0")
loop.run_until_complete(coro)
loop.run_forever()
最佳答案
带有 [6n
(及其前面的转义字符)的 block 要求终端告诉它光标在哪里,作为确定屏幕大小的一部分。显然 pyserial
不理解这一点,您必须等待一段时间,让执行请求的程序放弃并继续。
CSI Ps n Device Status Report (DSR).
...
Ps = 6 -> Report Cursor Position (CPR) [row;column].
其中 CSI 是控制序列发起者 escape[
.
当你运行 screen
时,它 interprets这个控制序列(即,它阅读、理解和适本地回复):
case 'n': if (a1 == 5) /* Report terminal status */ Report(win, "\033[0n", 0, 0); else if (a1 == 6) /* Report cursor position */ Report(win, "\033[%d;%dR", win->w_y + 1, win->w_x + 1);
The status report control sequence is used by a few programs such as resize
to determine the size of your terminal's screen. It works by moving the cursor to an impossibly far lower-right-corner, and then (because terminals have limits) asking how far it got. This particular example is not using resize
, which sends 999
for each coordinate (but it's debatable whether there's a real scenario where four digits are needed).
The application that is sending the device status control sequence moves the cursor down with the escape[9999B
, and apparently uses that later when setting up scrolling margins with the sequence ending with r
. This is a frequently-used VT100 feature not in ECMA-48 (the r
denotes a private use sequence, i.e., not standardized).
If you give it a bogus value for the cursor position, you might get poor results.
It also tries with two different control sequences to move the cursor to the home (upper-left) in this sequence from the screen
read/writes:
1b 5b 48 c4 9b 48
(0x9b
是 0x1b
、0x5b
或 escape 的 8 位等价物/kbd>[
).
所以你的选择很少:
关于python - 转义序列中断 pyserial 客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41708420/
#include int main() { int i; for( i = 0; i< 10 ; i++ ) { printf("test1 &d", i);
我有一个连接到远程服务器以查询数据的 C# 程序。数据很大,所以查询大约需要 2 分钟才能完成。在这 2 分钟的时间内,互联网中断了。这导致作业无法完成,程序卡在获取数据例程中。 它建立了连接,但在选
语句 1: [2,4,6,7,8].each do |i| (i % 2 == 0) || (puts "Not even" && break) puts i end 声明 2: [2
我想知道 C++ 是否有任何处理中断的方法。我希望一个程序将信息存储在文本文件中,而另一个程序根据文本文件中的内容打印一条语句。由于我希望它尽可能准确,因此我需要在更新程序更新文件时中断打印程序。 最
我正在尝试终止一个线程,但它不会中断或停止。所有这些都是名为 Webots 的软件 Controller 的一部分。我用它来模拟多机器人系统。在每个机器人的 Controller 中,我启动了一个线程
中断10h可以使用的服务有很多, 我想问一下关于其中两个我很困惑的问题 首先是, AH = 06H SCROLL UP WINDOW AH = 07H SCROLL DOWN WINDOW 在 D
我有一个基本的 SQL 问题,如果有两个事件连接,"A"和 "B"到 SQL 服务器,假设两者之间发生死锁,那么为了避免死锁,SQL 服务器将回滚其中一个连接“A”或“B”的交易。假设 SQL Ser
我有一个 mapkit/ View ,它工作正常 - 但我滚动并在 2 - 10 次移动后我的应用程序崩溃了......而且这只是一个“中断”。 这是我的代码的一部分。我认为这是后台线程和数组释放/覆
有什么办法可以做到,比如 C/C# ? 例如(C#风格) for (int i = 0; i Seq.tryFind (fun i -> printfn "%d" i i=66) 在实践中,
我的问题是Haskell如何与系统交互。 例如,IO如何发生? 我对IO monad不感兴趣。或者如何使Haskell打印字符串或读取文件。 我对Haskell和底层操作系统之间的层(如果是这样的话)
你能确认下一个break是否取消了内部for循环吗? for (out in 1:n_old){ id_velho <- old_table_df$id[out] for
我有一个程序可以进行一些数据分析,并且有几百行长。 在程序的早期,我想做一些质量控制,如果没有足够的数据,我希望程序终止并返回到 R 控制台。否则,我希望执行其余代码。 我尝试过break、brows
我有一个 if 语句,用于检查我的对象(向导)是否命中了项目。如果他这样做了,巫师的大小将会改变,他应该能够在与障碍物的 1 次碰撞中幸存。 现在我陷入了“在 1 个障碍物碰撞中幸存”,因为在我的碰撞
我正在尝试使用迭代器来显示很多内容。我不断收到“break;”错误线。它说这是一个无法访问的声明。如有任何帮助,我们将不胜感激。 public Lot getLot(int number) {
我正在创建一个应用程序,我需要在其中处理可能非常庞大且可能需要一些时间的数据。 现在我阅读了很多关于 IntentService 的资料,实际上我已经将它实现为处理 REST 调用的通信类,但现在我试
我有一个自定义的 UITableViewCell。该单元具有三个标签。最左边的“金额”标签具有以下约束。 在单元格的右侧,我有另一个标签,“Label Dollar Amount”。它具有以下约束:
我有以下不和谐嵌入: message.reply({ content: '', embed: { color: 11416728, author
JavaScript 不是我最擅长的技能,但我会尽力解释,所以就这样吧。我有人在我的网站上创建了一个幻灯片菜单,我也使用 jplayer 音乐播放器。 现在一切正常,直到我在顶部添加此脚本。由于某种原
我已经在 Ubuntu 上安装了 android studio,有一个带有损坏图像的 API,我也尝试过重新安装。我应该怎么做才能克服这个问题。 删除它后,它没有在 sdk 管理器中显示 提前致谢。
假设我的站点上有大约 10 个 css 文件。我想把它们合二为一。但是当我组合它们时(只是“连接”文件,以便将它们包含到 html 中),我的样式/布局中断了。这不是路径问题或其他问题,只是选择器无法
我是一名优秀的程序员,十分优秀!