-
Notifications
You must be signed in to change notification settings - Fork 75
Using Raspberry Pi 3 GPIO UART
On RPI3, the native UART is used to control Bluetooth Module.
You have 3 choices (don't forget to reboot your Raspberry Pi after):
- Edit /boot/config.txt and add:
dtoverlay = pi3-disable-bt
- Edit cmdline.txt and remove (if it's still here):
console=serial0,115200
CAUTION: If you choose a high speed (500MHz), this method can make your processor heat a lot! Don't forget to add a fan and a heatsink!
With this method, the processor clock will be fixed to a slow speed (250MHz) or to a high speed (500MHz?):
Edit /boot/config.txt and add:
enable_uart = 1
This will affect processor performance because it controls the speed of the L2 cache, and there will also be a reduction in analog audio quality. If you opt for the high clock speed (it will really require a fan and a heatsink), to keep the processor performance and audio quality, also add:
force_turbo = 1
in /boot/config.txt
- Edit /boot/config.txt and add:
dtoverlay = pi3-miniuart-bt
- Edit /boot/config.txt and add:
core_freq = 250
This will affect the performance of the processor. If you prefer to keep higher performance do not add the line core_freq = 250
but rather the line force_turbo = 1
but it requires to use a fan and a heatsink.
Thanks to Framboise314 for they great article describing theses methods!
- Home
- Building and flashing
- Raspberry Pi integration
- Physical Hardware
- Projects