Integrated pixy into emulator. Pixy is no longer in the common/libs folder but in emulator/libs and discovery/libs

This commit is contained in:
t-moe
2015-04-03 21:42:46 +02:00
parent c570bda350
commit cab86098c5
68 changed files with 6968 additions and 19 deletions

View File

@@ -6,3 +6,10 @@ bool system_init() {
return ll_system_init();
}
void system_delay(uint32_t msec) {
ll_system_delay(msec);
}

View File

@@ -1,4 +1,5 @@
#include <stdbool.h>
#include <stdint.h>
bool system_init();
void system_delay(uint32_t msec);