api-hal-delay.c 199 B

1234567891011
  1. #include "api-hal-delay.h"
  2. #include <stdio.h>
  3. #include <unistd.h>
  4. void delay_us(float microseconds) {
  5. usleep(microseconds);
  6. }
  7. void delay(float milliseconds) {
  8. usleep(milliseconds * 1000);
  9. }