You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RIOT/sys/include/auto_init.h

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