Use custom build of ev3-api, and own screen refresh

This commit is contained in:
Michal Moskal
2017-07-07 10:38:20 +01:00
parent 6fb7908b21
commit 43b167957b
6 changed files with 43 additions and 18 deletions

View File

@ -262,6 +262,7 @@ void dumpDmesg() {
// TODO
}
void screen_init();
void initRuntime() {
daemon(1, 1);
startTime = currTime();
@ -270,6 +271,7 @@ void initRuntime() {
pthread_create(&disp, NULL, evtDispatcher, NULL);
pthread_detach(disp);
target_init();
screen_init();
startUser();
}