-
Notifications
You must be signed in to change notification settings - Fork 21
doc: nrf-bm: lib: add event scheduler documentation #425
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
base: main
Are you sure you want to change the base?
Conversation
You can find the documentation preview for this PR here. |
bf37d28
to
91e6c1e
Compare
e6fbf05
to
e4033cc
Compare
| Header file: :file:`include/event_scheduler` | ||
| Source files: :file:`lib/event_scheduler.h/` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Header file: :file:`include/event_scheduler` | |
| Source files: :file:`lib/event_scheduler.h/` | |
| Header file: :file:`include/event_scheduler.h` | |
| Source files: :file:`lib/event_scheduler/` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks :/
e4033cc
to
d7827dc
Compare
d7827dc
to
377ec93
Compare
|
||
In some applications it is beneficial to defer the execution of certain interrupts, for example some SoftDevice interrupts, to the main application function. | ||
This shortens the time spent in the interrupt service routine (ISR) and allows for other (low priority) events to be raised before the previous event is fully processed. | ||
Note that the application must take care to only defer events that can be interleaved by the processing of other interrupts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this line makes much sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried rewriting this in my commit, @eivindj-nordic pls check if it makes sense
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Squashed, thanks!
079f832
to
d5e7722
Compare
6728043
to
ddd523f
Compare
Add documentation for event scheduler. Co-authored-by: Bartosz Gentkowski <[email protected]> Signed-off-by: Eivind Jølsgard <[email protected]>
ddd523f
to
ff47613
Compare
Add documentation for event scheduler.