1.1.2.4.34 DRV_G3_MACRT_COMM_STATUS_IND_CALLBACK Typedef

C

typedef void ( *DRV_G3_MACRT_COMM_STATUS_IND_CALLBACK )( uint8_t *pData );

Summary

Pointer to a G3 MAC RT Communication Status Event handler function.

Description

This data type defines the required function signature for the G3 MAC RT driver Comm Status event handling callback function. A client must register a pointer using the callback register function whose function signature (parameter and return value types) match the types specified by this function pointer in order to receive transfer related event calls back from the driver.

Parameters

ParamDescription
pDataPointer to the data content

Returns

None.

Example

void APP_MyPLCMacRtCommStatusHandler( uint8_t *pData )
{
    memcpy(appData->dataMacCommStatusBuffer, pData, MAC_RT_COMM_STATUS_SIZE);
}

Remarks

None.