From 1ef535274234065e8b81c2bc0a32c7e129c73120 Mon Sep 17 00:00:00 2001 From: Mumtahin Farabi Date: Mon, 11 May 2026 23:58:31 -0400 Subject: build(devenv): scaffold setup Signed-off-by: Mumtahin Farabi --- .tioconfig | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .tioconfig (limited to '.tioconfig') 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 -- cgit v1.3