├── .gitignore ├── LICENSE ├── Makefile.template ├── calibrate.cpp ├── cef168.c ├── cef168.dtsi ├── cef168.h ├── configure.sh ├── doc ├── serial.md └── troubleshooting.md ├── download.sh ├── readme.md ├── sensors.txt └── vcm.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/Makefile.template -------------------------------------------------------------------------------- /calibrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/calibrate.cpp -------------------------------------------------------------------------------- /cef168.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/cef168.c -------------------------------------------------------------------------------- /cef168.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/cef168.dtsi -------------------------------------------------------------------------------- /cef168.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/cef168.h -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/configure.sh -------------------------------------------------------------------------------- /doc/serial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/doc/serial.md -------------------------------------------------------------------------------- /doc/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/doc/troubleshooting.md -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/download.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/readme.md -------------------------------------------------------------------------------- /sensors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/sensors.txt -------------------------------------------------------------------------------- /vcm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinefeat/cef168/HEAD/vcm.sh --------------------------------------------------------------------------------