37 lines
991 B
Markdown
37 lines
991 B
Markdown
# 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 isn’t 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
|