Draft: Nb/slave mode controller#2971
Draft
Nibanovic wants to merge 7 commits intoros-controls:jazzyfrom
Draft
Conversation
* controller update() waits on signal from hardware that read() is complete * statistics for sync_signal_latency, time between read signal and controller update() call * statistics for sync_trigger, number of times update() was triggered
* initialize all parameters * pass in clock from the CM to the async function handler * only note sync_trigger statiustics if in slave mode
* use trigger_clock to trigger_update * use internal async_function_handler period instead of calulating one in trigger_update
- has 0.9 * rw_rate timeout on waiting - we measure latency between last sync signal and the time we actually wake up
Contributor
|
@Nibanovic, all pull requests must be targeted towards the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR implements the "async slave controller" functionality present in
realtime_toolsPRs:In short:
read()(first PR)update()is executed between hardwareread/write. This is mediated via signaling thread wakeups using the Monitor patternFor details and validation, check the comments in their respective PRs.