1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/include/auto_init.h
Martin Lenders 07e8ac9c19 Remove swtimer
see #4
2013-04-11 15:24:15 +02:00

27 lines
330 B
C

#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);
#endif