2013-11-27 16:28:31 +01:00
|
|
|
|
|
|
|
/**
|
2013-11-27 17:54:30 +01:00
|
|
|
* @defgroup sys_autoinit Auto-init
|
|
|
|
* @ingroup sys
|
|
|
|
* @brief Autoconfigure libraries
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file auto_init.h
|
2013-11-27 16:28:31 +01:00
|
|
|
*/
|
|
|
|
|
2010-09-22 15:10:42 +02:00
|
|
|
#ifndef AUTO_INIT_H
|
|
|
|
#define AUTO_INIT_H
|
|
|
|
|
|
|
|
#ifdef MODULE_HWTIMER
|
|
|
|
#include <hwtimer.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MODULE_SHT11
|
|
|
|
#include <sht11.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MODULE_GPIOINT
|
|
|
|
#include <gpioint.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MODULE_CC110X
|
|
|
|
#include <cc1100-interface.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MODULE_LTC4150
|
|
|
|
#include <ltc4150.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void auto_init(void);
|
|
|
|
|
2013-11-27 17:54:30 +01:00
|
|
|
/** @} */
|
|
|
|
#endif /* AUTO_INIT_H */
|