Files
M Starch 377fd690bd Banish Ref to a project directory (#5125)
* Banishing Ref to a project directory

* Fixing CI catches

* Change directory to TestDeploymentsProject for build

Signed-off-by: M Starch <LeStarch@googlemail.com>

---------

Signed-off-by: M Starch <LeStarch@googlemail.com>
2026-05-11 10:21:30 -07:00

46 lines
1.1 KiB
Fortran

module Ref {
@ An example block driver component with data buffers and interrupts
active component BlockDriver {
# ----------------------------------------------------------------------
# General ports
# ----------------------------------------------------------------------
import Drv.Tick
@ The rate group scheduler input
async input port Sched: Svc.Sched
@ The input data buffer port
async input port BufferIn: Drv.DataBuffer
@ The output data buffer port
output port BufferOut: Drv.DataBuffer
@ Input ping port
async input port PingIn: Svc.Ping
@ Output ping port
output port PingOut: Svc.Ping
# ----------------------------------------------------------------------
# Special ports
# ----------------------------------------------------------------------
@ Time get port
time get port Time
@ Telemetry port
telemetry port Tlm
# ----------------------------------------------------------------------
# Telemetry
# ----------------------------------------------------------------------
include "Tlm.fppi"
}
}