├── .gitignore ├── COPYING ├── README.md ├── documentation ├── Doxyfile ├── examples.dox ├── gpio.dox ├── header.html ├── i2c.dox ├── mainpage.dox └── usepage.dox ├── examples ├── Makefile ├── gpio_example_input.c ├── gpio_example_output.c ├── i2c_example_bitexpander.c ├── i2c_example_eeprom.c └── i2c_example_temp_sensor.c ├── include ├── bcm2835_gpio.h └── rpiGpio.h └── src ├── Makefile ├── gpio.c ├── i2c.c └── inc ├── gpio.h └── i2c.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/README.md -------------------------------------------------------------------------------- /documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/documentation/Doxyfile -------------------------------------------------------------------------------- /documentation/examples.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/documentation/examples.dox -------------------------------------------------------------------------------- /documentation/gpio.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/documentation/gpio.dox -------------------------------------------------------------------------------- /documentation/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/documentation/header.html -------------------------------------------------------------------------------- /documentation/i2c.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/documentation/i2c.dox -------------------------------------------------------------------------------- /documentation/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/documentation/mainpage.dox -------------------------------------------------------------------------------- /documentation/usepage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/documentation/usepage.dox -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/gpio_example_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/examples/gpio_example_input.c -------------------------------------------------------------------------------- /examples/gpio_example_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/examples/gpio_example_output.c -------------------------------------------------------------------------------- /examples/i2c_example_bitexpander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/examples/i2c_example_bitexpander.c -------------------------------------------------------------------------------- /examples/i2c_example_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/examples/i2c_example_eeprom.c -------------------------------------------------------------------------------- /examples/i2c_example_temp_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/examples/i2c_example_temp_sensor.c -------------------------------------------------------------------------------- /include/bcm2835_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/include/bcm2835_gpio.h -------------------------------------------------------------------------------- /include/rpiGpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/include/rpiGpio.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/src/gpio.c -------------------------------------------------------------------------------- /src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/src/i2c.c -------------------------------------------------------------------------------- /src/inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/src/inc/gpio.h -------------------------------------------------------------------------------- /src/inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbarr/RaspberryPi-GPIO/HEAD/src/inc/i2c.h --------------------------------------------------------------------------------