19 lines
263 B
C
Executable File
19 lines
263 B
C
Executable File
/*
|
|
* low_power.h
|
|
*
|
|
* Created on: Feb 17, 2015
|
|
* Author: tkl
|
|
*/
|
|
|
|
#ifndef LOW_POWER_H_
|
|
#define LOW_POWER_H_
|
|
|
|
#ifdef ARCH_MSP430
|
|
#include "msp430_low_power.h"
|
|
#endif
|
|
#ifdef ARCH_STM32F4XX
|
|
#include "stm32f4xx_low_power.h"
|
|
#endif
|
|
|
|
#endif /* LOW_POWER_H_ */
|