blob: 65a26d66d4c988c21fbaf6288cea4b5002483d8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef H__DELAY__
#define H__DELAY__
#include <stdint.h>
/*
* Loops and count-downs the delay, the time this takes depends on the speed
* of the clock.
*/
void delay(uint32_t delay);
#endif /* H__DELAY__ */
|