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:
parent
6198c924e4
commit
3b1cbf9cb8
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user