├── Kconfig ├── Makefile ├── README.md ├── documents ├── Potring_Guide.md └── ReleaseNote.txt ├── dtsi └── gt9xx_dts.txt ├── goodix_tool.c ├── gt9xx.c ├── gt9xx.h └── gt9xx_update.c /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/Kconfig -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/README.md -------------------------------------------------------------------------------- /documents/Potring_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/documents/Potring_Guide.md -------------------------------------------------------------------------------- /documents/ReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/documents/ReleaseNote.txt -------------------------------------------------------------------------------- /dtsi/gt9xx_dts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/dtsi/gt9xx_dts.txt -------------------------------------------------------------------------------- /goodix_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/goodix_tool.c -------------------------------------------------------------------------------- /gt9xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/gt9xx.c -------------------------------------------------------------------------------- /gt9xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/gt9xx.h -------------------------------------------------------------------------------- /gt9xx_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodix/gt9xx_driver_android/HEAD/gt9xx_update.c --------------------------------------------------------------------------------