Merge pull request #369 from mtnocean/AVRDragonISP

Added support for AVR Dragon in both ISP and DebugWire mode

Thanks @mtnocean
This commit is contained in:
Simon John 2015-07-14 14:43:23 +02:00
commit 2cde585210

View file

@ -1370,7 +1370,7 @@ endif
AVRDUDE_ISP_OPTS = -c $(ISP_PROG) -b $(AVRDUDE_ISP_BAUDRATE)
ifndef $(ISP_PORT)
ifneq ($(strip $(ISP_PROG)),$(filter $(ISP_PROG), usbasp usbtiny gpio linuxgpio avrispmkii))
ifneq ($(strip $(ISP_PROG)),$(filter $(ISP_PROG), usbasp usbtiny gpio linuxgpio avrispmkii dragon_isp dragon_dw))
AVRDUDE_ISP_OPTS += -P $(call get_isp_port)
endif
else