Skip to content

Commit

Permalink
Merge pull request #99 from nicka101/patch-1
Browse files Browse the repository at this point in the history
Update uart_log.sh for easier debugging
  • Loading branch information
Ralim committed May 9, 2024
2 parents 124f054 + 3e95c41 commit 61f736b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions uart_log.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/env sh

num=$(find /dev -name 'ttyUSB*' | rev | cut -c 1)
echo "$num"
sudo minicom "port$num"
rightbud=/dev/serial/by-id/usb-wch.cn_USB_Dual_Serial_0123456789-if00
leftbud=/dev/serial/by-id/usb-wch.cn_USB_Dual_Serial_0123456789-if02

read -p "Which bud do you want to connect to UART for? L/R (default L): " -n 1 -r
ttydev=$leftbud
if [[ $REPLY =~ ^[Rr]$ ]]; then
ttydev=$rightbud
fi
sudo minicom -D $ttydev -b 2000000

0 comments on commit 61f736b

Please sign in to comment.