nrf-softdevice
nrf-softdevice copied to clipboard
While using the nRF SoftDevice for Bluetooth Low Energy (BLE) applications, there is a need to initiate the pairing process from the central device when establishing a connection with a...
It would be helpful to have some documentation on how to use this from a separate project. I tried to move out the `examples/` but it doesn't build... ``` console...
I'm trying to add the softdevice to my project. However I'm getting 118 build errors with the softdevice package. It seems to be missing crates, Ive tried adding them with...
Hello, Firstly, thank you so much for embassy and nrf-softdevice. Being able to program microcontrollers with rust is very appealing. I'm curious if anyone has successfully run a an embassy/nrf-softdevice...
Attempt to run `gen.sh` straight from current `HEAD` fails with following error: ``` + for s in mbr s112 s113 s122 s132 s140 + ./nrf-softdevice-gen/target/release/nrf-softdevice-gen ./softdevice/mbr/headers ./nrf-softdevice-mbr/src/bindings.rs thread 'main' panicked...
Im trying to add fast pair support to my device. However when adding any data I get the exceeded buffer length panic. It works without the .services_16... line. But I...
I got bitten by #253 yesterday and it did take quite some time to figure it out. Since there are many commits on the main branch since the last release,...
For example, in `ble_bas_central` example: ```rust let client: BatteryServiceClient = unwrap!(gatt_client::discover(&conn).await); // Read let reader = async { loop { // Keep reading the battery level let val = unwrap!(client.battery_level_read().await);...
Im wanting to do a fixed pin for security. How do I go about setting it up? Ive looked at the bonding and security examples, but theyre all dynamic.