fprime/Svc/StaticMemory/StaticMemory.fpp
2021-06-23 19:53:16 -07:00

15 lines
360 B
Fortran

module Svc {
@ A component that provides statically allocated memory
passive component StaticMemory {
@ Mutexed buffer deallocate input port
guarded input port bufferDeallocate: [StaticMemoryAllocations] Fw.BufferSend
@ Mutexed buffer allocate input port
guarded input port bufferAllocate: [StaticMemoryAllocations] Fw.BufferGet
}
}