├── .clang-format ├── .gitignore ├── LICENSE ├── Makefile ├── ProdDoc_XVC_2014_3.pdf ├── README.md ├── Screenshot_2021-08-10_09-51-02.png ├── Usage-in-Vivado.png ├── XVC.README.md ├── raspberry-pi-pinout-pinout.xyz.png ├── raspi-gpio.png └── xvcpi.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | xvcpi 2 | *.o 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/Makefile -------------------------------------------------------------------------------- /ProdDoc_XVC_2014_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/ProdDoc_XVC_2014_3.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot_2021-08-10_09-51-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/Screenshot_2021-08-10_09-51-02.png -------------------------------------------------------------------------------- /Usage-in-Vivado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/Usage-in-Vivado.png -------------------------------------------------------------------------------- /XVC.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/XVC.README.md -------------------------------------------------------------------------------- /raspberry-pi-pinout-pinout.xyz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/raspberry-pi-pinout-pinout.xyz.png -------------------------------------------------------------------------------- /raspi-gpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/raspi-gpio.png -------------------------------------------------------------------------------- /xvcpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kholia/xvcpi/HEAD/xvcpi.c --------------------------------------------------------------------------------