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

Create TickDriver interface #2708

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Drv/BlockDriver/BlockDriver.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ module Drv {
# General ports
# ----------------------------------------------------------------------

include "../Interfaces/TickInterface.fppi"

@ The rate group scheduler input
async input port Sched: Svc.Sched

@ The input data buffer port
async input port BufferIn: Drv.DataBuffer

@ The cycle outputs. Meant to be connected to rate group driver
output port CycleOut: Svc.Cycle

@ The output data buffer port
output port BufferOut: Drv.DataBuffer

Expand Down
2 changes: 2 additions & 0 deletions Drv/Interfaces/TickInterface.fppi
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@ The cycle outputs. Meant to be connected to rate group driver
output port CycleOut: Svc.Cycle
Loading