From 1bf58dd17b27c8682066b277fdf114db7c8dc026 Mon Sep 17 00:00:00 2001 From: Jake Kenneally Date: Mon, 2 Feb 2026 23:41:49 -0500 Subject: [PATCH] fix: Correct `debugging_monitor.py` script instructions - `pyserial` should be installed, NOT `serial`, which is a different lib - Added macOS serial port --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9efa6801..151c6293 100644 --- a/README.md +++ b/README.md @@ -102,13 +102,18 @@ After flashing the new features, it’s recommended to capture detailed logs fro First, make sure all required Python packages are installed: ```python -python3 -m pip install serial colorama matplotlib +python3 -m pip install pyserial colorama matplotlib ``` after that run the script: ```sh +# For Linux +# This was tested on Debian and should work on most Linux systems. python3 scripts/debugging_monitor.py + +# For macOS +python3 scripts/debugging_monitor.py /dev/cu.usbmodem2101 ``` -This was tested on Debian and should work on most Linux systems. Minor adjustments may be required for Windows or macOS. +Minor adjustments may be required for Windows. ## Internals