16 lines
265 B
C
16 lines
265 B
C
|
/*
|
||
|
* stm32f4xx_low_power.h
|
||
|
*
|
||
|
* Created on: Oct 1, 2015
|
||
|
* Author: tkl
|
||
|
*/
|
||
|
|
||
|
#ifndef STM32F4XX_LOW_POWER_H_
|
||
|
#define STM32F4XX_LOW_POWER_H_
|
||
|
|
||
|
/* TODO: real implement!!! */
|
||
|
#define enter_low_power()
|
||
|
#define exit_low_power()
|
||
|
|
||
|
#endif /* STM32F4XX_LOW_POWER_H_ */
|