Skip to content

New Pipeline Structure #190

@JLLeitschuh

Description

@JLLeitschuh

Pipeline should be run in a separate thread

The pipeline should have a timer and will run at a specific rate.
Setting the source value will no longer runs the pipeline; instead it flags a dirty bit.

for(;;) {
    if(sem.wait(time) || sources.dirty) {
        run();
    }
}

This will make everything sequential and makes mutable data safe.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions