├── LICENCE ├── README.md ├── backpowering-diagram.png ├── designguide.md ├── devicetree-guide.md ├── eeprom-circuit.png ├── eeprom-format.md ├── eepromutils ├── .gitignore ├── Makefile ├── README.md ├── eepdump.c ├── eepflash.sh ├── eepmake.c ├── eeprom_settings.txt └── eeptypes.h ├── hat-board-mechanical.pdf ├── uhat-board-mechanical.pdf └── zvd-circuit.png /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/README.md -------------------------------------------------------------------------------- /backpowering-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/backpowering-diagram.png -------------------------------------------------------------------------------- /designguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/designguide.md -------------------------------------------------------------------------------- /devicetree-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/devicetree-guide.md -------------------------------------------------------------------------------- /eeprom-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eeprom-circuit.png -------------------------------------------------------------------------------- /eeprom-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eeprom-format.md -------------------------------------------------------------------------------- /eepromutils/.gitignore: -------------------------------------------------------------------------------- 1 | eepdump 2 | eepmake 3 | -------------------------------------------------------------------------------- /eepromutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eepromutils/Makefile -------------------------------------------------------------------------------- /eepromutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eepromutils/README.md -------------------------------------------------------------------------------- /eepromutils/eepdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eepromutils/eepdump.c -------------------------------------------------------------------------------- /eepromutils/eepflash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eepromutils/eepflash.sh -------------------------------------------------------------------------------- /eepromutils/eepmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eepromutils/eepmake.c -------------------------------------------------------------------------------- /eepromutils/eeprom_settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eepromutils/eeprom_settings.txt -------------------------------------------------------------------------------- /eepromutils/eeptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/eepromutils/eeptypes.h -------------------------------------------------------------------------------- /hat-board-mechanical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/hat-board-mechanical.pdf -------------------------------------------------------------------------------- /uhat-board-mechanical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/uhat-board-mechanical.pdf -------------------------------------------------------------------------------- /zvd-circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/hats/HEAD/zvd-circuit.png --------------------------------------------------------------------------------