diff --git a/fpga/run-node.sh b/fpga/run-node.sh index 178eedb..30f1d2e 100755 --- a/fpga/run-node.sh +++ b/fpga/run-node.sh @@ -31,4 +31,8 @@ timeout_silent=$((10 * 60)) # Stop if 10 min without output # Set dead switch sleep $timeout && killall picocom & -picocom -q -x $(($timeout_silent*1000)) -b 115200 $FPGACTL_UART +# Note: --imap igncr is broken so we replace it with LF. +# See https://github.com/npat-efault/picocom/pull/114 +# It looks like picocom is abandoned, we may want to switch to minicom or +# stty+cat +picocom --imap crlf -q -x $(($timeout_silent*1000)) -b 115200 $FPGACTL_UART