├── CMakeLists.txt ├── Kconfig ├── LICENSE ├── Readme.md ├── drivers └── counter │ ├── CMakeLists.txt │ ├── Kconfig │ └── pcf85063a.c ├── include └── drivers │ └── counter │ └── pcf85063a.h └── zephyr └── module.yml /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/Readme.md -------------------------------------------------------------------------------- /drivers/counter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/drivers/counter/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/counter/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/drivers/counter/Kconfig -------------------------------------------------------------------------------- /drivers/counter/pcf85063a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/drivers/counter/pcf85063a.c -------------------------------------------------------------------------------- /include/drivers/counter/pcf85063a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/include/drivers/counter/pcf85063a.h -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuitdojo/pcf85063a/HEAD/zephyr/module.yml --------------------------------------------------------------------------------