Fixed EEPE flag check.

Here, using the flag itself makes the bootloader build where it currently does not for the 328 amongst others
This commit is contained in:
Martyn Ranyard 2012-11-02 19:16:54 +00:00 committed by Cristian Maglie
parent 25e642084a
commit 8416a2c0ca
1 changed files with 1 additions and 1 deletions

View File

@ -578,7 +578,7 @@ int main(void)
/* if ((length.byte[0] & 0x01) == 0x01) length.word++; //Even up an odd number of bytes */
if ((length.byte[0] & 0x01)) length.word++; //Even up an odd number of bytes
cli(); //Disable interrupts, just to be sure
#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega1281__)
#if defined(EEPE)
while(bit_is_set(EECR,EEPE)); //Wait for previous EEPROM writes to complete
#else
while(bit_is_set(EECR,EEWE)); //Wait for previous EEPROM writes to complete