embassy-rs / nrf-softdevice

Apache License 2.0
258 stars 79 forks source link

Radio Notifications #93

Open indietyp opened 2 years ago

indietyp commented 2 years ago

I am trying to implement something similar to https://devzone.nordicsemi.com/guides/short-range-guides/b/software-development-kit/posts/radio-notification using an nRF5280 w/ S140.

I couldn't find anything in the examples (or the code - but I only briefly skimmed the library).

Is this use-case supported? If so, would someone be able to give me some pointers?

I appreciate any help you can provide.

Dirbaio commented 2 years ago

You can call the C softdevice sd_* functions directly using the nrf-softdevice-sXX crates. That should enable porting C code easily.

There's no "higher-level" safe wrapper for this functionality in the nrf-softdevice crate. PRs welcome.