Fixed some bugs when receiving large data.

This commit is contained in:
t-moe
2015-04-25 14:05:44 +02:00
parent 3d1e4b2ef2
commit 0858b0d2cb
8 changed files with 55 additions and 19 deletions

View File

@@ -13,3 +13,7 @@ void system_delay(uint32_t msec) {
void system_process() {
ll_system_process();
}
void system_toggle_led() {
ll_system_toggle_led();
}

View File

@@ -4,3 +4,4 @@
bool system_init();
void system_delay(uint32_t msec);
void system_process();
void system_toggle_led();