Go to the source code of this file.
Functions | |
SbgErrorCode | sbgEComFinalizeFrameGeneration (SbgStreamBuffer *pOutputStream) |
SbgErrorCode | sbgEComProtocolClose (SbgEComProtocol *pHandle) |
SbgErrorCode | sbgEComProtocolInit (SbgEComProtocol *pHandle, SbgInterface *pInterface) |
SbgErrorCode | sbgEComProtocolReceive (SbgEComProtocol *pHandle, uint8 *pMsgClass, uint8 *pMsg, void *pData, size_t *pSize, size_t maxSize) |
SbgErrorCode | sbgEComProtocolSend (SbgEComProtocol *pHandle, uint8 msgClass, uint8 msg, const void *pData, size_t size) |
SbgErrorCode | sbgEComStartFrameGeneration (SbgStreamBuffer *pOutputStream, uint8 msgClass, uint8 msg) |
SbgErrorCode sbgEComFinalizeFrameGeneration | ( | SbgStreamBuffer * | pOutputStream | ) |
Finalize an output stream that has been initialized with sbgEComStartFrameGeneration.
[in] | pOutputStream | Pointer to an allocated and initialized output stream. |
Definition at line 507 of file sbgEComProtocol.c.
SbgErrorCode sbgEComProtocolClose | ( | SbgEComProtocol * | pHandle | ) |
Close the protocol system.
[in] | pHandle | A valid protocol handle to close. |
Definition at line 38 of file sbgEComProtocol.c.
SbgErrorCode sbgEComProtocolInit | ( | SbgEComProtocol * | pHandle, |
SbgInterface * | pInterface | ||
) |
Initialize the protocol system used to communicate with the product and return the created handle.
[in] | pHandle | Pointer on an allocated protocol structure to initialize. |
[in] | pInterface | Interface to use for read/write operations. |
Definition at line 14 of file sbgEComProtocol.c.
SbgErrorCode sbgEComProtocolReceive | ( | SbgEComProtocol * | pHandle, |
uint8 * | pMsgClass, | ||
uint8 * | pMsg, | ||
void * | pData, | ||
size_t * | pSize, | ||
size_t | maxSize | ||
) |
Try to receive a frame from the device and returns the cmd, data and size of data field.
[in] | pHandle | A valid protocol handle. |
[out] | pMsgClass | Pointer to hold the returned message class |
[out] | pMsg | Pointer to hold the returned message id |
[out] | pData | Allocated buffer used to hold received data field. |
[out] | pSize | Pointer used to hold the received data field size. |
[in] | maxSize | Max number of bytes that can be stored in the pData buffer. |
Definition at line 152 of file sbgEComProtocol.c.
SbgErrorCode sbgEComProtocolSend | ( | SbgEComProtocol * | pHandle, |
uint8 | msgClass, | ||
uint8 | msg, | ||
const void * | pData, | ||
size_t | size | ||
) |
Send a frame to the device (size should be less than 4086 bytes).
[in] | pHandle | A valid protocol handle. |
[in] | msgClass | Message class (0-255) |
[in] | msg | Message id (0-255) |
[in] | pData | Pointer on the data payload to send or NULL if no payload. |
[in] | size | Size in bytes of the data payload (less than 4086). |
Definition at line 66 of file sbgEComProtocol.c.
SbgErrorCode sbgEComStartFrameGeneration | ( | SbgStreamBuffer * | pOutputStream, |
uint8 | msgClass, | ||
uint8 | msg | ||
) |
Initialize an output stream for an sbgECom frame generation. This method is helpful to avoid memory copy compared to sbgEComProtocolSend one.
Warning, the stream will be seek to the beginning!
[in] | pOutputStream | Pointer to an allocated and initialized output stream. |
[in] | msgClass | Message class (0-255) |
[in] | msg | Message id (0-255) |
Definition at line 472 of file sbgEComProtocol.c.