52 lines
1.8 KiB
C
52 lines
1.8 KiB
C
/*
|
|
Copyright (c) 2012-2015 Ben Croston
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
the Software without restriction, including without limitation the rights to
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
of the Software, and to permit persons to whom the Software is furnished to do
|
|
so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
int setup(void);
|
|
void setup_gpio(int gpio, int direction, int pud);
|
|
int gpio_function(int gpio);
|
|
void output_gpio(int gpio, int value);
|
|
int input_gpio(int gpio);
|
|
void set_rising_event(int gpio, int enable);
|
|
void set_falling_event(int gpio, int enable);
|
|
void set_high_event(int gpio, int enable);
|
|
void set_low_event(int gpio, int enable);
|
|
int eventdetected(int gpio);
|
|
void cleanup(void);
|
|
|
|
#define SETUP_OK 0
|
|
#define SETUP_DEVMEM_FAIL 1
|
|
#define SETUP_MALLOC_FAIL 2
|
|
#define SETUP_MMAP_FAIL 3
|
|
#define SETUP_CPUINFO_FAIL 4
|
|
#define SETUP_NOT_RPI_FAIL 5
|
|
|
|
#define INPUT 1 // is really 0 for control register!
|
|
#define OUTPUT 0 // is really 1 for control register!
|
|
#define ALT0 4
|
|
|
|
#define HIGH 1
|
|
#define LOW 0
|
|
|
|
#define PUD_OFF 0
|
|
#define PUD_UP 1
|
|
#define PUD_DOWN 2
|