mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-29 15:35:26 +00:00
I missed to commit the allowfullpagebitstream attributes.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@456 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
@@ -1750,6 +1750,7 @@ part
|
|||||||
|
|
||||||
idr = 0x22;
|
idr = 0x22;
|
||||||
spmcr = 0x68;
|
spmcr = 0x68;
|
||||||
|
allowfullpagebitstream = yes;
|
||||||
|
|
||||||
memory "eeprom"
|
memory "eeprom"
|
||||||
paged = no; /* leave this "no" */
|
paged = no; /* leave this "no" */
|
||||||
@@ -1901,6 +1902,7 @@ part
|
|||||||
idr = 0x22;
|
idr = 0x22;
|
||||||
spmcr = 0x68;
|
spmcr = 0x68;
|
||||||
rampz = 0x3b;
|
rampz = 0x3b;
|
||||||
|
allowfullpagebitstream = yes;
|
||||||
|
|
||||||
memory "eeprom"
|
memory "eeprom"
|
||||||
paged = no; /* leave this "no" */
|
paged = no; /* leave this "no" */
|
||||||
@@ -2196,6 +2198,7 @@ part
|
|||||||
|
|
||||||
idr = 0x31;
|
idr = 0x31;
|
||||||
spmcr = 0x57;
|
spmcr = 0x57;
|
||||||
|
allowfullpagebitstream = yes;
|
||||||
|
|
||||||
memory "eeprom"
|
memory "eeprom"
|
||||||
paged = no; /* leave this "no" */
|
paged = no; /* leave this "no" */
|
||||||
@@ -2308,6 +2311,7 @@ part
|
|||||||
|
|
||||||
idr = 0x04;
|
idr = 0x04;
|
||||||
spmcr = 0x57;
|
spmcr = 0x57;
|
||||||
|
allowfullpagebitstream = yes;
|
||||||
|
|
||||||
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
||||||
"x x x x x x x x x x x x x x x x";
|
"x x x x x x x x x x x x x x x x";
|
||||||
@@ -2752,6 +2756,7 @@ part
|
|||||||
|
|
||||||
idr = 0x31;
|
idr = 0x31;
|
||||||
spmcr = 0x57;
|
spmcr = 0x57;
|
||||||
|
allowfullpagebitstream = yes;
|
||||||
|
|
||||||
memory "eeprom"
|
memory "eeprom"
|
||||||
paged = no; /* leave this "no" */
|
paged = no; /* leave this "no" */
|
||||||
|
@@ -1,4 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
AC_VER=259
|
||||||
|
AM_VER=19
|
||||||
|
|
||||||
# autoconf-2.57 is required
|
# autoconf-2.57 is required
|
||||||
|
|
||||||
@@ -14,7 +16,7 @@
|
|||||||
|
|
||||||
AUTOCONF_VER=`(${AUTOCONF} --version 2>/dev/null | head -n 1 | \
|
AUTOCONF_VER=`(${AUTOCONF} --version 2>/dev/null | head -n 1 | \
|
||||||
cut -d ' ' -f 4) 2>/dev/null`
|
cut -d ' ' -f 4) 2>/dev/null`
|
||||||
if [ "$AUTOCONF_VER" != "2.57" ]
|
if [ "$AUTOCONF_VER" != "2.59" ]
|
||||||
then
|
then
|
||||||
echo "You need to use autoconf version 2.57."
|
echo "You need to use autoconf version 2.57."
|
||||||
echo "You are using `${AUTOCONF} --version | head -n 1`."
|
echo "You are using `${AUTOCONF} --version | head -n 1`."
|
||||||
@@ -25,7 +27,7 @@ fi
|
|||||||
|
|
||||||
AUTOMAKE_VER=`(${AUTOMAKE} --version | head -n 1 | \
|
AUTOMAKE_VER=`(${AUTOMAKE} --version | head -n 1 | \
|
||||||
cut -d ' ' -f 4 | cut -d '.' -f -2) 2>/dev/null`
|
cut -d ' ' -f 4 | cut -d '.' -f -2) 2>/dev/null`
|
||||||
if [ "$AUTOMAKE_VER" != "1.7" ]
|
if [ "$AUTOMAKE_VER" != "1.9" ]
|
||||||
then
|
then
|
||||||
echo "You need to use automake version 1.7 (preferrably 1.7.3)."
|
echo "You need to use automake version 1.7 (preferrably 1.7.3)."
|
||||||
echo "You are using `${AUTOMAKE} --version | head -n 1`."
|
echo "You are using `${AUTOMAKE} --version | head -n 1`."
|
||||||
|
Reference in New Issue
Block a user