diff options
| author | Simon John <git@the-jedi.co.uk> | 2017-12-22 14:13:23 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-22 14:13:23 +0000 |
| commit | 7a26a86c78a99ed57fcd08393bf3cd3d92fe24a0 (patch) | |
| tree | 8f6b592c6025a2952a0402967dc091000dee1a86 /Arduino.mk | |
| parent | bc5092f25bd330051b377c13b317a25870413a24 (diff) | |
| parent | 246e5680113b06931914de1eeca63e09f5b3685f (diff) | |
Merge pull request #540 from sej7278/master
Moved -e flag for avrdude from set_fuses to ispload
Diffstat (limited to 'Arduino.mk')
| -rw-r--r-- | Arduino.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1531,7 +1531,7 @@ reset_stty: $$STTYF $(call get_monitor_port) -hupcl ispload: $(TARGET_EEP) $(TARGET_HEX) verify_size - $(AVRDUDE) $(AVRDUDE_COM_OPTS) $(AVRDUDE_ISP_OPTS) \ + $(AVRDUDE) $(AVRDUDE_COM_OPTS) $(AVRDUDE_ISP_OPTS) -e \ $(AVRDUDE_ISPLOAD_OPTS) burn_bootloader: @@ -1547,7 +1547,7 @@ endif set_fuses: ifneq ($(strip $(AVRDUDE_ISP_FUSES_PRE)),) - $(AVRDUDE) $(AVRDUDE_COM_OPTS) $(AVRDUDE_ISP_OPTS) -e $(AVRDUDE_ISP_FUSES_PRE) + $(AVRDUDE) $(AVRDUDE_COM_OPTS) $(AVRDUDE_ISP_OPTS) $(AVRDUDE_ISP_FUSES_PRE) endif ifneq ($(strip $(AVRDUDE_ISP_FUSES_POST)),) $(AVRDUDE) $(AVRDUDE_COM_OPTS) $(AVRDUDE_ISP_OPTS) $(AVRDUDE_ISP_FUSES_POST) |
