mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
* Interfaces * Point to new fpp alpha release * Fix the fprime-gds version * Update for framer/deframer work * Fix cmake tests * Clean up annotations * Clean up final fpp
16 lines
527 B
Fortran
16 lines
527 B
Fortran
module Svc {
|
|
interface Deframer {
|
|
@ Port to receive framed data, with optional context
|
|
guarded input port dataIn: Svc.ComDataWithContext
|
|
|
|
@ Port to output deframed data, with optional context
|
|
output port dataOut: Svc.ComDataWithContext
|
|
|
|
@ Port for returning ownership of received buffers to deframe
|
|
output port dataReturnOut: Svc.ComDataWithContext
|
|
|
|
@ Port receiving back ownership of sent buffers
|
|
sync input port dataReturnIn: Svc.ComDataWithContext
|
|
}
|
|
}
|