Files
Upsilon/platform/stm32f429/init.c
Romain Goyet f5e3032100 fx92 keyboard
2015-05-24 15:40:51 +02:00

12 lines
161 B
C

#include "init_lcd.h"
#include "init_heap.h"
#include "init_kbd.h"
#include <src/hello.h>
void init() {
init_kbd();
init_lcd();
init_heap();
hello();
}