From ba47b0e8ae4e5a8b2e21d96b9d8e12ea69c528bf Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Wed, 18 Jan 2023 23:38:54 -0700 Subject: Initial commit for the ch-flash program. This program is a fork from https://github.com/frank-zago/isp55e0.git, except that it wait for a device to be connected if one is not present. This makes the flashing process more streamlined. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ba21548 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +ch-flash: ch-flash.c ch-flash.h + gcc -O2 -o ch-flash ch-flash.c -lusb-1.0 + +clean: + rm -rf ch-flash -- cgit