|
| enum | { NUM_BUFFERIN_INPUT_PORTS = 1
, NUM_COMIN_INPUT_PORTS = 1
, NUM_COMSTATUSIN_INPUT_PORTS = 1
} |
| | Enumerations for numbers of typed input ports. More...
|
| |
| enum | { NUM_BUFFERDEALLOCATE_OUTPUT_PORTS = 1
, NUM_COMSTATUSOUT_OUTPUT_PORTS = 1
, NUM_FRAMEDALLOCATE_OUTPUT_PORTS = 1
, NUM_FRAMEDOUT_OUTPUT_PORTS = 1
} |
| | Enumerations for numbers of typed output ports. More...
|
| |
| | FramerComponentBase (const char *compName="") |
| | Construct FramerComponentBase object. More...
|
| |
| virtual | ~FramerComponentBase () |
| | Destroy FramerComponentBase object. More...
|
| |
| NATIVE_INT_TYPE | getNum_bufferIn_InputPorts () const |
| |
| NATIVE_INT_TYPE | getNum_comIn_InputPorts () const |
| |
| NATIVE_INT_TYPE | getNum_comStatusIn_InputPorts () const |
| |
| NATIVE_INT_TYPE | getNum_bufferDeallocate_OutputPorts () const |
| |
| NATIVE_INT_TYPE | getNum_comStatusOut_OutputPorts () const |
| |
| NATIVE_INT_TYPE | getNum_framedAllocate_OutputPorts () const |
| |
| NATIVE_INT_TYPE | getNum_framedOut_OutputPorts () const |
| |
| bool | isConnected_bufferDeallocate_OutputPort (NATIVE_INT_TYPE portNum) |
| |
| bool | isConnected_comStatusOut_OutputPort (NATIVE_INT_TYPE portNum) |
| |
| bool | isConnected_framedAllocate_OutputPort (NATIVE_INT_TYPE portNum) |
| |
| bool | isConnected_framedOut_OutputPort (NATIVE_INT_TYPE portNum) |
| |
| void | bufferIn_handlerBase (NATIVE_INT_TYPE portNum, Fw::Buffer &fwBuffer) |
| | Handler base-class function for input port bufferIn. More...
|
| |
| void | comIn_handlerBase (NATIVE_INT_TYPE portNum, Fw::ComBuffer &data, U32 context) |
| | Handler base-class function for input port comIn. More...
|
| |
| void | comStatusIn_handlerBase (NATIVE_INT_TYPE portNum, Fw::Success &condition) |
| | Handler base-class function for input port comStatusIn. More...
|
| |
| void | bufferDeallocate_out (NATIVE_INT_TYPE portNum, Fw::Buffer &fwBuffer) |
| | Invoke output port bufferDeallocate. More...
|
| |
| void | comStatusOut_out (NATIVE_INT_TYPE portNum, Fw::Success &condition) |
| | Invoke output port comStatusOut. More...
|
| |
| Fw::Buffer | framedAllocate_out (NATIVE_INT_TYPE portNum, U32 size) |
| | Invoke output port framedAllocate. More...
|
| |
| Drv::SendStatus | framedOut_out (NATIVE_INT_TYPE portNum, Fw::Buffer &sendBuffer) |
| | Invoke output port framedOut. More...
|
| |
| virtual void | lock () |
| | Lock the guarded mutex. More...
|
| |
| virtual void | unLock () |
| | Unlock the guarded mutex. More...
|
| |
| | PassiveComponentBase (const char *name) |
| | Named constructor. More...
|
| |
| virtual | ~PassiveComponentBase () |
| | Destructor. More...
|
| |
| void | init (NATIVE_INT_TYPE instance) |
| | Initialization function. More...
|
| |
| NATIVE_INT_TYPE | getInstance () const |
| |
| | ObjBase (const char *name) |
| | ObjBase constructor. More...
|
| |
| virtual | ~ObjBase () |
| | Destructor. More...
|
| |
| void | init () |
| | Object initializer. More...
|
| |
Generic framing component using FramingProtocol implementation for actual framing.
Framing component used to take Com and File packets and frame serialize them using a framing protocol specified in a FramingProtocol instance. The instance must be supplied using the setup method.
Using this component, projects can implement and supply a fresh FramingProtocol implementation without changing the reference topology.
Definition at line 31 of file Framer.hpp.