lo_os.c 143 B

12345678
  1. #include "cmsis_os.h"
  2. #include <unistd.h>
  3. #include <stdio.h>
  4. void osDelay(uint32_t ms) {
  5. usleep(ms * 1000);
  6. printf("[DELAY] %d ms\n", ms);
  7. }