Difference between revisions of "Translations:RPi/17/de"

From GIMX
Jump to: navigation, search
(Created page with "Standardmässig ist der RPi UART als Serielle Konsole konfiguriert.<br /> Deaktivierung der Seriellen Konsole mittels raspi-config: <pre> sudo raspi-config </pre> Dann folgen...")
 
Line 17: Line 17:
 
init_uart_clock=8000000  
 
init_uart_clock=8000000  
 
</pre>
 
</pre>
Reboot to apply the changes:
+
Neustart um die Änderungen wirksam zu machen:
 
<pre>
 
<pre>
 
sudo reboot
 
sudo reboot
 
</pre>
 
</pre>

Revision as of 16:36, 29 December 2016

Information about message (contribute)

This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.

Message definition (RPi)
By default, the RPi UART is configured as a serial console.<br />
Disable this serial console using raspi-config:
<pre>
sudo raspi-config 
</pre>
Then select:
<pre>
"Advanced Options", "Serial", "No", "Finish"
</pre>
The default configuration does not allow high baudrates.<br />
Enable high baudrates editing /boot/config.txt:
<pre>
sudo nano /boot/config.txt
</pre>
Add the following line at the end of the file:
<pre>
init_uart_clock=8000000 
</pre>
Reboot to apply the changes:
<pre>
sudo reboot
</pre>
TranslationStandardmässig ist der RPi UART als Serielle Konsole konfiguriert.<br />
Deaktivierung der Seriellen Konsole mittels raspi-config:
<pre>
sudo raspi-config 
</pre>
Dann folgendes auswählen:
<pre>
"Advanced Options", "Serial", "No", "Finish"
</pre>
Die Standardkonfiguration erlaubt keine hohen baudrates.<br />
Hohe baudrates durch das anpassen von /boot/config.txt aktivieren:
<pre>
sudo nano /boot/config.txt
</pre>
Add the following line at the end of the file:
<pre>
init_uart_clock=8000000 
</pre>
Neustart um die Änderungen wirksam zu machen:
<pre>
sudo reboot
</pre>

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 

Neustart um die Änderungen wirksam zu machen:

sudo reboot