├── Makefile.mk ├── README.md ├── UserPinConfig.h └── library ├── ADC.cpp ├── ADC.h ├── Arduino.h ├── Binary.h ├── CLOCK.cpp ├── CLOCK.h ├── CommonDefines.h ├── EEPROM.h ├── GPIO.cpp ├── GPIO.h ├── MAIN.cpp ├── MAIN.h ├── Makefile ├── OVERLAY.cpp ├── OVERLAY.h ├── PINS.cpp ├── PINS.h ├── PRU0.hp ├── PRU0.p ├── PRU0_bin.h ├── PRU1.hp ├── PRU1.p ├── PRU1_bin.h ├── PWM.cpp ├── PWM.h ├── Print.cpp ├── Print.h ├── Printable.h ├── SPI.cpp ├── SPI.h ├── Stream.cpp ├── Stream.h ├── UART.cpp ├── UART.h ├── WCharacter.h ├── WConstants.h ├── WMath.cpp ├── WMath.h ├── WString.h ├── Wire.cpp ├── Wire.h ├── Wiring.h ├── i2c-dev.h ├── pins_arduino.h └── twi.h /Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/Makefile.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/README.md -------------------------------------------------------------------------------- /UserPinConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/UserPinConfig.h -------------------------------------------------------------------------------- /library/ADC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/ADC.cpp -------------------------------------------------------------------------------- /library/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/ADC.h -------------------------------------------------------------------------------- /library/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Arduino.h -------------------------------------------------------------------------------- /library/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Binary.h -------------------------------------------------------------------------------- /library/CLOCK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/CLOCK.cpp -------------------------------------------------------------------------------- /library/CLOCK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/CLOCK.h -------------------------------------------------------------------------------- /library/CommonDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/CommonDefines.h -------------------------------------------------------------------------------- /library/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/EEPROM.h -------------------------------------------------------------------------------- /library/GPIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/GPIO.cpp -------------------------------------------------------------------------------- /library/GPIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/GPIO.h -------------------------------------------------------------------------------- /library/MAIN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/MAIN.cpp -------------------------------------------------------------------------------- /library/MAIN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/MAIN.h -------------------------------------------------------------------------------- /library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Makefile -------------------------------------------------------------------------------- /library/OVERLAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/OVERLAY.cpp -------------------------------------------------------------------------------- /library/OVERLAY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/OVERLAY.h -------------------------------------------------------------------------------- /library/PINS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PINS.cpp -------------------------------------------------------------------------------- /library/PINS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PINS.h -------------------------------------------------------------------------------- /library/PRU0.hp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PRU0.hp -------------------------------------------------------------------------------- /library/PRU0.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PRU0.p -------------------------------------------------------------------------------- /library/PRU0_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PRU0_bin.h -------------------------------------------------------------------------------- /library/PRU1.hp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PRU1.hp -------------------------------------------------------------------------------- /library/PRU1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PRU1.p -------------------------------------------------------------------------------- /library/PRU1_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PRU1_bin.h -------------------------------------------------------------------------------- /library/PWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PWM.cpp -------------------------------------------------------------------------------- /library/PWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/PWM.h -------------------------------------------------------------------------------- /library/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Print.cpp -------------------------------------------------------------------------------- /library/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Print.h -------------------------------------------------------------------------------- /library/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Printable.h -------------------------------------------------------------------------------- /library/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/SPI.cpp -------------------------------------------------------------------------------- /library/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/SPI.h -------------------------------------------------------------------------------- /library/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Stream.cpp -------------------------------------------------------------------------------- /library/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Stream.h -------------------------------------------------------------------------------- /library/UART.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/UART.cpp -------------------------------------------------------------------------------- /library/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/UART.h -------------------------------------------------------------------------------- /library/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/WCharacter.h -------------------------------------------------------------------------------- /library/WConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/WConstants.h -------------------------------------------------------------------------------- /library/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/WMath.cpp -------------------------------------------------------------------------------- /library/WMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/WMath.h -------------------------------------------------------------------------------- /library/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/WString.h -------------------------------------------------------------------------------- /library/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Wire.cpp -------------------------------------------------------------------------------- /library/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Wire.h -------------------------------------------------------------------------------- /library/Wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/Wiring.h -------------------------------------------------------------------------------- /library/i2c-dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/i2c-dev.h -------------------------------------------------------------------------------- /library/pins_arduino.h: -------------------------------------------------------------------------------- 1 | // Dummy file 2 | // Do nothing -------------------------------------------------------------------------------- /library/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbhraneelBera/wiringBone/HEAD/library/twi.h --------------------------------------------------------------------------------