Disable safemode for Xmega parts.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@902 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
02a229b5f7
commit
b9041f1adc
|
@ -1,3 +1,7 @@
|
|||
2010-01-11 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||
|
||||
* main.c (main): disable safemode for Xmega parts.
|
||||
|
||||
2010-01-12 Michal Ludvig <mludvig@logix.net.nz>
|
||||
|
||||
* buspirate.c: If the BusPirate doesn't respond
|
||||
|
|
|
@ -728,6 +728,10 @@ int main(int argc, char * argv [])
|
|||
auto_erase = 0;
|
||||
}
|
||||
|
||||
if(p->flags & AVRPART_HAS_PDI) {
|
||||
safemode = 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* set up seperate instances of the avr part, one for use in
|
||||
* programming, one for use in verifying. These are separate
|
||||
|
|
Loading…
Reference in New Issue