blob: 92020f9a15868fbb844e56e78fb1286e1168c950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// Authors
// Siddhesh Wani
//
#ifndef __INT_RPIPERIPHERALUTIL_H__
#define __INT_RPIPERIPHERALUTIL_H__
#include "types.h"
#include "RPIPeripheralUtil.h"
#ifdef __cplusplus
extern "C" {
#endif
#define RPI_DelayMicro(in1) u16RPIDelayMicros((uint16) in1);
#define RPI_DelayMilli(in1) u16RPIDelayMillis((uint16) in1);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* !__RPIPERIPHERALUTIL_H__ */
|