1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

* added board_uart0 to auto_init

This commit is contained in:
Oliver Hahm 2010-11-04 14:12:05 +01:00
parent 6198c924e4
commit 3b1cbf9cb8

View File

@ -1,5 +1,6 @@
#include <stdint.h>
#include <stdio.h>
#include <board_uart0.h>
#include <auto_init.h>
#define ENABLE_DEBUG
@ -16,6 +17,10 @@ void auto_init(void) {
DEBUG("Auto init swtimer module.\n");
swtimer_init();
#endif
#ifdef MODULE_UART0
DEBUG("Auto init uart0 module.\n");
board_uart0_init();
#endif
#ifdef MODULE_SHT11
DEBUG("Auto init SHT11 module.\n");
sht11_init();