api-hal-delay.c 143 B

1234567
  1. #include "api-hal-delay.h"
  2. #include <stdio.h>
  3. void delay_us(uint32_t time) {
  4. // How to deal with it
  5. printf("[DELAY] %d us\n", time);
  6. }