Translations:RPi/17/de
Standardmässig ist der RPi UART als Serielle Konsole konfiguriert.
Deaktivierung der Seriellen Konsole mittels raspi-config:
sudo raspi-config
Dann folgendes auswählen:
"Advanced Options", "Serial", "No", "Finish"
Die Standardkonfiguration erlaubt keine hohen baudrates.
Hohe baudrates durch das anpassen von /boot/config.txt aktivieren:
sudo nano /boot/config.txt
Add the following line at the end of the file:
init_uart_clock=8000000
Reboot to apply the changes:
sudo reboot