gpt4 book ai didi

linux - 如何在 linux 中获取带有时间戳的 ttyUSB 日志

转载 作者:太空宇宙 更新时间:2023-11-04 12:52:29 24 4
gpt4 key购买 nike

以下日志来自 TeraTerm,一个用于 windows 的终端仿真器。我想通过以下方式从我的 Linux 中的 ttyUSB0 获取日志。

[Thu Apr 14 15:08:14.410 2016] Load U-Boot from eMMC/NAND Flash
[Thu Apr 14 15:08:14.410 2016] eMMC/NAND copy from 0x030A0000 to 0x49FB0000 (len:262144).
[Thu Apr 14 15:08:14.456 2016] Done.
[Thu Apr 14 15:08:14.456 2016]
[Thu Apr 14 15:08:14.456 2016]
[Thu Apr 14 15:08:14.456 2016] U-Boot 1.2.0 (Sep 2 2013 - 13:31:42)Puma6 - PSPU-Boot 2.0.0.24
[Thu Apr 14 15:08:14.503 2016]
[Thu Apr 14 15:08:14.503 2016] DRAM: 128 MB
[Thu Apr 14 15:08:14.503 2016] *** Warning - Unsupported Flash detected, flash is unusable
[Thu Apr 14 15:08:14.503 2016]

我找到了 this document ,但它会在终端空闲时给出时间戳。

-- 0:ttyUSB2 -- time-stamp -- 2016-04-15 17:23:13 --
-- 0:ttyUSB2 -- time-stamp -- 2016-04-15 17:23:53 --

最佳答案

您可以使用 awk 来执行此操作。我有数据通过串口传来。最初的输出(使用/dev/ttyUSB0)如下所示。

Sending struct (10 bytes) ... 

A: -0.06.

Sending struct (10 bytes) ...

A: -0.05.

Sending struct (10 bytes) ...

A: -0.06.


Sending struct (10 bytes) ...

A: -0.05.

使用以下命令后,我得到了时间戳。

awk '{ print strftime("[%a %b %d %H:%M:%S.%f %y]"), $0; }' /dev/ttyUSB0 > /home/captain/ttyUSB0_v11.txt &

输出如下所示。

[Thu Sep 26 12:01:03.%f 19] 
[Thu Sep 26 12:01:03.%f 19] Transmitting at 868 Mhz...
[Thu Sep 26 12:01:03.%f 19]
[Thu Sep 26 12:01:03.%f 19] SPI Flash Init OK ... UniqueID (MAC): A: -0.06.
[Thu Sep 26 12:01:03.%f 19]
[Thu Sep 26 12:01:03.%f 19] Sending struct (10 bytes) ...
[Thu Sep 26 12:01:03.%f 19]
[Thu Sep 26 12:01:04.%f 19] A: -0.05.
[Thu Sep 26 12:01:04.%f 19]
[Thu Sep 26 12:01:04.%f 19] Sending struct (10 bytes) ...
[Thu Sep 26 12:01:04.%f 19]
[Thu Sep 26 12:01:05.%f 19] A: -0.06.
[Thu Sep 26 12:01:05.%f 19]
[Thu Sep 26 12:01:06.%f 19] Sending struct (10 bytes) ...
[Thu Sep 26 12:01:06.%f 19]
[Thu Sep 26 12:01:07.%f 19] A: -0.06.
[Thu Sep 26 12:01:07.%f 19]
[Thu Sep 26 12:01:07.%f 19] Sending struct (10 bytes) ...
[Thu Sep 26 12:01:07.%f 19]
[Thu Sep 26 12:01:08.%f 19] A: -0.06.
[Thu Sep 26 12:01:08.%f 19]
[Thu Sep 26 12:01:08.%f 19] Sending struct (10 bytes) ...
[Thu Sep 26 12:01:08.%f 19]
[Thu Sep 26 12:01:09.%f 19] A: -0.05.

由于某些奇怪的原因,毫秒 (%f) 不起作用。但如果它非常重要,您应该能够弄清楚这一点。

干杯

操作系统- Ubuntu14.04

串行设备 - Moteino (Arduino)

关于linux - 如何在 linux 中获取带有时间戳的 ttyUSB 日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36737144/

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