├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Vagrantfile └── rpi0 └── download.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-coral/edgetpu-platforms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-coral/edgetpu-platforms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-coral/edgetpu-platforms/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-coral/edgetpu-platforms/HEAD/Vagrantfile -------------------------------------------------------------------------------- /rpi0/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-coral/edgetpu-platforms/HEAD/rpi0/download.sh --------------------------------------------------------------------------------