From d93ca841f64cfe6a5ddcb45510becadd83358d84 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Wed, 18 Jan 2023 22:29:32 -0700 Subject: Start implementing ch-flash. This is a program forked from isp55e0, but with the ability to wait for the device to be plugged in before flashing. I will perhaps add other fetaures to the program which will work better with my workflow, but this is the big change for now. --- ch-flash/Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ch-flash/Makefile (limited to 'ch-flash/Makefile') diff --git a/ch-flash/Makefile b/ch-flash/Makefile new file mode 100644 index 0000000..ba21548 --- /dev/null +++ b/ch-flash/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