nn::rdt::CTR::ReceiverConfig Structurestruct ReceiverConfig
{
void * pWorkBuf;
void * pRecvBuf;
u16 recvBufSize;
u16 nodeId;
u8 port;
u8 padding[3];
};
Structure that contains all configuration information passed to Initialize.
| pWorkBuf | void * | Pointer to the work memory region used by the Receiver instance. Must be 8-byte aligned. Allocate a size equal to or larger than ReceiverRECEIVER_WORKBUF_SIZE for the work memory size. |
|
|---|---|---|---|
| pRecvBuf | void * | Takes the starting address of the receive buffer. | |
| recvBufSize | u16 | Size (in bytes) of the receive buffer (pRecvBuf). | |
| nodeId | u16 | Node ID of the UDS communication partner. | |
| port | u8 | Port number used during UDS communication. | |
| padding | u8 | Padding. |
CONFIDENTIAL