summaryrefslogtreecommitdiff
path: root/.tioconfig
diff options
context:
space:
mode:
Diffstat (limited to '.tioconfig')
-rw-r--r--.tioconfig33
1 files changed, 33 insertions, 0 deletions
diff --git a/.tioconfig b/.tioconfig
new file mode 100644
index 0000000..64499d4
--- /dev/null
+++ b/.tioconfig
@@ -0,0 +1,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