Add 'mdelay()' function to busy-wait for given number of milli-seconds

This commit is contained in:
Harald Welte
2017-02-03 22:16:47 +01:00
parent 2819e9c131
commit 83207e0cad
3 changed files with 23 additions and 2 deletions

View File

@@ -24,6 +24,7 @@
#include "stdlib.h"
#include "string.h"
#include "inttypes.h"
#include "syscalls.h"
#define MIN(a, b) ((a < b) ? a : b)