blob: 64499d42982b42339a8b3e2156dd4fdb6543b29f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
[default]
baudrate = 115200
databits = 8
stopbits = 1
parity = none
flow = none
timestamp = false
color = bold # doesn't fight with ANSI codes the firmware emits
# INLCRNL maps incoming LF to CR-LF so embedded firmware that emits bare \n
# renders correctly. Zephyr's LOG_INF already uses \r\n; this is defensive.
map = INLCRNL
no-reconnect = false # auto-reconnect is the default. Every chip reset, 'west flash', and USB re-enumeration just resumes the session
[walter]
device = /dev/cu.usbmodem2101
color = 12
# log = true
# log-file = /Users/mfarabi/workspace/apidae-systems/src/logs/tio/walter.log
# log-append = true
# log-strip = true # Strip ANSI escapes from the log file (keeps logs grep-friendly) while preserving them on stdout (so the live view is still colored)
[usbmodem-%1]
pattern = ^usbmodem([0-9]+)$
device = /dev/cu.usbmodem%m1
[usbserial-%1]
pattern = ^usbserial-([0-9]+)$
device = /dev/cu.usbserial-%m1
|