Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 647 Bytes

jtag-serial_console.md

File metadata and controls

47 lines (34 loc) · 647 Bytes

使用JTAG看串口日志

新建 C:\Users\zogodo.gdbinit 文件, 写入一下内容:

add-auto-load-safe-path D:\code\C\mico\zTC1\.gdbinit
set auto-load safe-path /

执行以下命令:

mico make TC1@MK3031@moc debug
(gdb) target remote localhost:3333
(gdb) b SetLogRecord
(gdb) commands 1
> silent
> p log
> p \n
> c
> end
(gdb) set height 0
(gdb) c

参考: https://www.tablix.org/~avian/blog/archives/2012/08/monitoring_serial_console_through_jtag/

mico make TC1@MK3031@moc debug
target remote localhost:3333
b SetLogRecord
commands 1
silent
p log
c
end
set height 0
c

b application_start