1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

* fix auto init

This commit is contained in:
Kaspar Schleiser 2010-12-15 12:43:15 +01:00
parent 3b99c3955e
commit 3c343560e9

View File

@ -2,8 +2,6 @@
#include <stdio.h>
#include <board_uart0.h>
#include <rtc.h>
#include <display.h>
#include <display_putchar.h>
#include <auto_init.h>
#define ENABLE_DEBUG
@ -13,10 +11,12 @@ extern void main(void);
void auto_init(void) {
#ifdef MODULE_BOARD_DISPLAY
extern void lcd_init();
lcd_init();
DEBUG("DISP OK");
#endif
#ifdef MODULE_DISPLAY_PUTCHAR
extern void init_display_putchar();
init_display_putchar();
DEBUG("DISP OK");
#endif