summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/hardware/rasberrypi/includes/RPIPeripheralDigital.h
blob: 575a8b4343e5709478f66a04df42c88cebd4418a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* This file declares functions and constants related to GPIO pins*/

#ifndef __RPIPERIPHERALGPIO_H__
#define __RPIPERIPHERALGPIO_H__

#ifdef  __cplusplus
extern "C" {
#endif


#include "types.h"
#include "bcm2835.h"

uint8 u8RPIDigitalSetups(uint8 pin, uint8 direction);
uint8 u8RPIDigitalOuts(uint8 pin, uint8 state);
uint8 u8RPIDigitalIns(uint8 pin);

#ifdef  __cplusplus
} /* extern "C" */
#endif

#endif  //__RPIPERIPHERALGPIO_H__