1.22.19.1 POWER_LowPowerModeEnter Function

C

void POWER_LowPowerModeEnter( POWER_LOW_POWER_MODE mode );

Summary

Puts the device in selected low power mode

Description

This function puts the device in selected low power mode. Before entering into low power mode using this API, user application should have made appropriate provision to wake up the device from low power mode.

Precondition

None.

Parameters

Param Description
mode Low power mode which has to be entered.

Returns

None.

Example

// Puts the device in sleep mode
POWER_LowPowerModeEnter( LOW_POWER_SLEEP_MODE );

Remarks

None.