summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a7200dd6e..5283feae0 100644
--- a/Makefile
+++ b/Makefile
@@ -157,6 +157,7 @@ DEPENDS_ON_LIBPCI := \
DEPENDS_ON_LIBUSB1 := \
CONFIG_CH341A_SPI \
+ CONFIG_CH347_SPI \
CONFIG_DEDIPROG \
CONFIG_DEVELOPERBOX_SPI \
CONFIG_DIGILENT_SPI \
@@ -521,6 +522,9 @@ CONFIG_IT8212 ?= yes
# Winchiphead CH341A
CONFIG_CH341A_SPI ?= yes
+# Winchiphead CH347
+CONFIG_CH347_SPI ?= yes
+
# Digilent Development board JTAG
CONFIG_DIGILENT_SPI ?= yes
@@ -814,6 +818,11 @@ PROGRAMMER_OBJS += ch341a_spi.o
ACTIVE_PROGRAMMERS += ch341a_spi
endif
+ifeq ($(CONFIG_CH347_SPI), yes)
+FEATURE_FLAGS += -D'CONFIG_CH347_SPI=1'
+PROGRAMMER_OBJS += ch347_spi.o
+endif
+
ifeq ($(CONFIG_DIGILENT_SPI), yes)
FEATURE_FLAGS += -D'CONFIG_DIGILENT_SPI=1'
PROGRAMMER_OBJS += digilent_spi.o