blob: 2e6d9ae439788e08ae0c757fcaab1b43388d427c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//This file defines functions corresponding to delay functions
//
// Authors
// Siddhesh Wani
//
#ifndef __AVRUTIL_H__
#define __AVRUTIL_H__
#include <avr/io.h>
#ifdef __cplusplus
extern "C" {
#endif
#include "Types.h"
#include "avr/util.h"
uint8 U16AVRSleeps (uint16 delay);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* !__AVRUTIL_H__ */
|