blob: 809595f3cd9dfc300fb2d97845a2f2e81a964af2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* This file declares functions and constants related to rasberrypi*/
#ifndef __RPIPERIPHERALUTIL_H__
#define __RPIPERIPHERALUTIL_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "types.h"
#include "bcm2835.h"
uint8 u16RPIDelayMillis(uint16 time);
uint8 u16RPIDelayMicros(uint16 time);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif //__RPIPERIPHERALUTIL_H__
|