7 lines
143 B
C
7 lines
143 B
C
|
#include "api-hal-delay.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void delay_us(uint32_t time) {
|
||
|
// How to deal with it
|
||
|
printf("[DELAY] %d us\n", time);
|
||
|
}
|