1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

Fix documentation for lpm.h

This commit is contained in:
Martin Lenders 2014-04-01 15:32:36 +02:00
parent 8048a57e53
commit c35a7555a3

View File

@ -39,9 +39,19 @@ void lpm_init(void);
*/
enum lpm_mode lpm_set(enum lpm_mode target);
/**
* @brief Switches the MCU to active power mode LPM_ON
*/
void lpm_awake(void);
/**
* @brief Begin to switch MCU to active power mode.
*/
void lpm_begin_awake(void);
/**
* @brief Finish to switch MCU to active power mode.
*/
void lpm_end_awake(void);
/**
@ -50,5 +60,5 @@ void lpm_end_awake(void);
*/
enum lpm_mode lpm_get(void);
#endif /* LPM_H_ */
#endif /* __LPM_H_ */
/** @} */