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
575 B
Fortran
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
|
|
}
|
|
}
|