diff options
| author | Mumtahin Farabi <[email protected]> | 2026-05-11 23:58:31 -0400 |
|---|---|---|
| committer | Mumtahin Farabi <[email protected]> | 2026-05-11 23:58:31 -0400 |
| commit | 1ef535274234065e8b81c2bc0a32c7e129c73120 (patch) | |
| tree | 0cea4940cc2ebde8d235fc5e9ee0ad33d2e609c6 /.tioconfig | |
| parent | 9b0fb073ed687ab5b49fdd4e7d2b3e58af325049 (diff) | |
build(devenv): scaffold setup
Signed-off-by: Mumtahin Farabi <[email protected]>
Diffstat (limited to '.tioconfig')
| -rw-r--r-- | .tioconfig | 33 |
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 |
