Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth: Define connection event prepare callbacks #16099

Merged
merged 2 commits into from
Jul 17, 2024

Commits on Jul 17, 2024

  1. Bluetooth: Add "Radio Notification callback" feature

    The Radio Notification callback feature replaces
    the radio notification feature. It can be used to
    synchronize data sampling with Bluetooth connection events.
    
    The old feature had several weaknesses:
     - It was not possible to know which connection
       the notification belonged to.
     - The trigger also happened upon flash access.
     - The time from trigger until event start was fixed.
       That is, not configurable per use case.
    
    The new feature is built on top of the connection event
    trigger feature and is therefore able to known
    which connection a given notification belongs to.
    
    The feature is marked as experimental.
    Currently this feature will cancels out peripheral latency
    which we indent to change.
    
    Signed-off-by: Rubin Gerritsen <[email protected]>
    rugeGerritsen committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    564b47b View commit details
    Browse the repository at this point in the history
  2. Bluetooth: Samples: Add Radio Notification callback sample

    The sample demonstrates how the Radio Notification connection
    callback feature can used to minimize latency between data
    sampling and on air transmission.
    
    Signed-off-by: Rubin Gerritsen <[email protected]>
    rugeGerritsen committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    04ec46d View commit details
    Browse the repository at this point in the history