mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-12-19 19:40:10 +00:00
bug #35186 inverting pins with "~" doesn't work for pin lists (i.e. vcc)
bug #37727 Add support for LM3S811 dev board as a programmer * lexer.l,config_gram.y: accepting inverted pins at pin lists syntax: ~num or ~(num,num,...) * par.c: par_set_many_bits is now usable with inverted pins * avrftdi.c: fixed wrong index in ftdi_pin_name * avrdude.conf.in: added programmer lm3s811 git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1106 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
@@ -38,6 +38,9 @@
|
||||
# usbsn = <serialno>; # USB Serial Number
|
||||
#
|
||||
# To invert a bit, use = ~ <num>, the spaces are important.
|
||||
# For a pin list all pins must be inverted.
|
||||
# A single pin can be specified as usual = ~ <num>, for lists
|
||||
# specify it as follows = ~ ( <num> [, <num2> ... ] ) .
|
||||
# ;
|
||||
#
|
||||
# part
|
||||
@@ -473,6 +476,28 @@ programmer parent "jtagkey"
|
||||
usbproduct = "USB<=>JTAG&RS232";
|
||||
;
|
||||
|
||||
# Only Rev. A boards.
|
||||
# Schematic and user manual: http://www.cs.put.poznan.pl/wswitala/download/pdf/811EVBK.pdf
|
||||
programmer
|
||||
id = "lm3s811";
|
||||
desc = "Luminary Micro LM3S811 Eval Board (Rev. A)";
|
||||
type = "avrftdi";
|
||||
connection_type = usb;
|
||||
usbvid = 0x0403;
|
||||
usbpid = 0xbcd9;
|
||||
usbvendor = "LMI";
|
||||
usbproduct = "LM3S811 Evaluation Board";
|
||||
usbdev = "A";
|
||||
usbsn = "";
|
||||
#ISP-signals - lower ACBUS-Nibble (default)
|
||||
reset = 4;
|
||||
sck = 1;
|
||||
mosi = 2;
|
||||
miso = 3;
|
||||
# Enable correct buffers
|
||||
buff = ~8;
|
||||
;
|
||||
|
||||
programmer
|
||||
id = "avrisp";
|
||||
desc = "Atmel AVR ISP";
|
||||
@@ -1065,7 +1090,7 @@ programmer
|
||||
;
|
||||
|
||||
# It is almost same as pony-stk200, except vcc on pin 5 to auto
|
||||
# disconnect port (download on http://electropol.free.fr)
|
||||
# disconnect port (download on http://electropol.free.fr/spip/spip.php?article27)
|
||||
programmer parent "pony-stk200"
|
||||
id = "frank-stk200";
|
||||
desc = "Frank STK200";
|
||||
|
||||
Reference in New Issue
Block a user