Simplified code a bit. Emulator does not work stable when replugging pixy.

This commit is contained in:
t-moe
2015-04-25 00:40:23 +02:00
parent 416883c15b
commit 3d1e4b2ef2
11 changed files with 24 additions and 51 deletions

View File

@@ -1,4 +1,6 @@
#include <QThread>
#include <QApplication>
extern "C" {
#include "ll_system.h"
}
@@ -11,3 +13,7 @@ void ll_system_delay(uint32_t msec) {
QThread::msleep(msec);
}
void ll_system_process() {
QApplication::processEvents();
}