In ISP mode, read baudrate and programmer from boards.txt
Arduino IDE also reads this from boards.txt file Fix #125
This commit is contained in:
parent
a17cf2af96
commit
7961a86286
2 changed files with 11 additions and 2 deletions
|
@ -7,6 +7,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it
|
||||||
### 1.1.0 (in development)
|
### 1.1.0 (in development)
|
||||||
- Don't append port details to avrdude for usbasp. See #123
|
- Don't append port details to avrdude for usbasp. See #123
|
||||||
- Ignore commented lines while parsing boards.txt file. See #124
|
- Ignore commented lines while parsing boards.txt file. See #124
|
||||||
|
- In ISP mode, read baudrate and programmer from boards.txt. See #125
|
||||||
|
|
||||||
### 1.0.1 (2013-09-25)
|
### 1.0.1 (2013-09-25)
|
||||||
- Unconditionally add -D in avrdude options. See #114
|
- Unconditionally add -D in avrdude options. See #114
|
||||||
|
|
|
@ -976,11 +976,19 @@ endif
|
||||||
AVRDUDE_ARD_OPTS = -c $(AVRDUDE_ARD_PROGRAMMER) -b $(AVRDUDE_ARD_BAUDRATE) -P $(call get_monitor_port)
|
AVRDUDE_ARD_OPTS = -c $(AVRDUDE_ARD_PROGRAMMER) -b $(AVRDUDE_ARD_BAUDRATE) -P $(call get_monitor_port)
|
||||||
|
|
||||||
ifndef ISP_PROG
|
ifndef ISP_PROG
|
||||||
ISP_PROG = stk500v1
|
ifneq ($(strip $(AVRDUDE_ARD_PROGRAMMER)),)
|
||||||
|
ISP_PROG = $(AVRDUDE_ARD_PROGRAMMER)
|
||||||
|
else
|
||||||
|
ISP_PROG = stk500v1
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef AVRDUDE_ISP_BAUDRATE
|
ifndef AVRDUDE_ISP_BAUDRATE
|
||||||
AVRDUDE_ISP_BAUDRATE = 19200
|
ifneq ($(strip $(AVRDUDE_ARD_BAUDRATE)),)
|
||||||
|
AVRDUDE_ISP_BAUDRATE = $(AVRDUDE_ARD_BAUDRATE)
|
||||||
|
else
|
||||||
|
AVRDUDE_ISP_BAUDRATE = 19200
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Pre fuse settings
|
# Pre fuse settings
|
||||||
|
|
Loading…
Reference in a new issue