fprime/FppTest/interfaces/serial_ports_async.fpp
Andrei Tumbar 5723115f5e
Add FPP Interfaces (#3709)
* 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
2025-06-24 09:08:44 -07:00

16 lines
575 B
Fortran

module FppTest {
interface SerialPortsAsync {
@ A serial async input port
async input port serialAsync: [3] serial
@ A serial async input port with queue full behavior and priority
async input port serialAsyncAssert: serial assert
@ A serial async input port with queue full behavior and priority
async input port serialAsyncBlockPriority: serial priority 10 block
@ A serial async input port with queue full behavior and priority
async input port serialAsyncDropPriority: serial priority 5 drop
}
}