1.1.2.4.29 DRV_G3_MACRT_INIT_CALLBACK Typedef

C

typedef void ( *DRV_G3_MACRT_INIT_CALLBACK )( bool initResult );

Summary

Pointer to a G3 MAC RT Driver Initialization Event handler function.

Description

This data type defines the required function signature for the G3 MAC RT driver initialization 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
initResultInitialization result (true if success, false if error)

Returns

None.

Example

void APP_MyInitEventHandler( bool initResult )
{
    if (initResult)
    {

    }
}

Remarks

None.