├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── bits.h ├── clunet.c ├── clunet.h ├── demo_project ├── Makefile ├── clunet-demo.c ├── clunet_bootloader │ ├── Makefile │ ├── bits.h │ ├── clunet.h │ ├── clunet_bootloader.c │ └── defines.h ├── clunet_config.h └── defines.h └── images └── sample-schematic.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/README.md -------------------------------------------------------------------------------- /bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/bits.h -------------------------------------------------------------------------------- /clunet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/clunet.c -------------------------------------------------------------------------------- /clunet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/clunet.h -------------------------------------------------------------------------------- /demo_project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/demo_project/Makefile -------------------------------------------------------------------------------- /demo_project/clunet-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/demo_project/clunet-demo.c -------------------------------------------------------------------------------- /demo_project/clunet_bootloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/demo_project/clunet_bootloader/Makefile -------------------------------------------------------------------------------- /demo_project/clunet_bootloader/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/demo_project/clunet_bootloader/bits.h -------------------------------------------------------------------------------- /demo_project/clunet_bootloader/clunet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/demo_project/clunet_bootloader/clunet.h -------------------------------------------------------------------------------- /demo_project/clunet_bootloader/clunet_bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/demo_project/clunet_bootloader/clunet_bootloader.c -------------------------------------------------------------------------------- /demo_project/clunet_bootloader/defines.h: -------------------------------------------------------------------------------- 1 | #define BOOTLOADER_TIMEOUT 50000UL 2 | -------------------------------------------------------------------------------- /demo_project/clunet_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/demo_project/clunet_config.h -------------------------------------------------------------------------------- /demo_project/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/demo_project/defines.h -------------------------------------------------------------------------------- /images/sample-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClusterM/clunet/HEAD/images/sample-schematic.png --------------------------------------------------------------------------------