We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c771460 commit 03c0de1Copy full SHA for 03c0de1
pico_setup.sh
@@ -144,6 +144,11 @@ if [[ "$SKIP_UART" == 1 ]]; then
144
else
145
sudo apt install -y $UART_DEPS
146
echo "Disabling Linux serial console (UART) so we can use it for pico"
147
- sudo raspi-config nonint do_serial 2
+
148
+ # Enable UART hardware
149
+ sudo raspi-config nonint do_serial_hw 0
150
+ # Disable console over serial port
151
+ sudo raspi-config nonint do_serial_cons 1
152
153
echo "You must run sudo reboot to finish UART setup"
154
fi
0 commit comments