1.1.2.4.37 DRV_G3_MACRT_SLEEP_IND_CALLBACK Typedef

C

typedef void ( *DRV_G3_MACRT_SLEEP_IND_CALLBACK )( void );

Summary

Pointer to notification when Sleep Mode is disabled and G3 MAC RT driver is available to be used again.

Description

This data type defines the required function signature for the G3 MAC RT driver sleep mode disable 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

None.

Returns

None.

Example

void APP_MySleepDisableEventHandler( void )
{
    // Do initial configuration of the application if needed
    
    appData.plc_sleep = false;
}

Remarks

None.