|
|
Line 13: |
Line 13: |
| sudo nano /boot/config.txt | | sudo nano /boot/config.txt |
| </pre> | | </pre> |
− | Add the following line at the end of the file:
| + | Folgende zeile am schluss der Datei hinzufügen: |
| <pre> | | <pre> |
| init_uart_clock=8000000 | | init_uart_clock=8000000 |
Revision as of 16:37, 29 December 2016
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
Folgende zeile am schluss der Datei hinzufügen:
init_uart_clock=8000000
Neustart um die Änderungen wirksam zu machen:
sudo reboot