blob: ce96951bf405b82a03a4affec5142f27d418d8e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//This file defines interfaces corresponding to uitl function.
//
// Authors
// Siddhesh Wani
//
#ifndef __INT_AVRUTIL_H__
#define __INT_AVRUTIL_H__
#include <avr/io.h>
#include "AVRUtil.h"
#ifdef __cplusplus
extern "C" {
#endif
#define d0sleepu80(in1) U16AVRSleeps ((uint16) in1);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* !__AVRPERIPHERALGPIO_H__ */
|