A custom driver to utilize the Raspberry Pi's GPIO.
NOTE: This project is currently a work in progress
The driver is tested and developed on a Raspberry Pi Zero W.
To compile and run a file that includes the driver.h
file, use gcc
gcc the_file.c driver.c -o main
./main
To compile the main.c
file included in this repo, use the following
make
./main
or
gcc main.c driver.c -o main
./main