37 lines
991 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# raspberrypi-bluetooth
#### Description
The bluetooth service for RaspberryPi, which loads BCM43430A1 firmware on boot. These files are from the repositories in RaspberryPi community.
- https://github.com/RPi-Distro/pi-bluetooth
#### Software Architecture
AArch64
#### Installation
`dnf install raspberrypi-bluetooth`
#### Instructions
After installing raspberrypi-bluetooth,
1. Start the bluetooth service (i.e., hciuart service) to load related firmware: `systemctl start hciuart`.
2. Check the service's status using the status command: `systemctl status hciuart`.
3. If this service isnt running, you can use the restart command: `systemctl restart hciuart` to restart the service.
4. To view the name and basic information of the bluetooth device, you can use the command: `hciconfig`.
5. Set the service to start on boot: `systemctl enable hciuart`.
#### Contribution
1. Fork the repository
2. Create Feat_xxx branch
3. Commit your code
4. Create Pull Request