WIP target lo

custom debug stream

run docker with project dir, specify dir to makefile

remove unused includes

fix broken F1
This commit is contained in:
aanper
2020-08-17 12:45:53 +03:00
parent 419a7644a4
commit 0980775f01
16 changed files with 320 additions and 45 deletions

8
target_lo/Src/lo_os.c Normal file
View File

@@ -0,0 +1,8 @@
#include "cmsis_os.h"
#include <unistd.h>
#include <stdio.h>
void osDelay(uint32_t ms) {
usleep(ms * 1000);
printf("[DELAY] %d ms\n", ms);
}