Remove extra 50ms delay added by de1725

by Josh Goebel.
Merge conflict resolved.
This commit is contained in:
Scott Allen 2017-04-13 20:44:49 -04:00
parent 1280160f89
commit 6e13fc019f
1 changed files with 1 additions and 2 deletions

View File

@ -169,7 +169,7 @@ void Arduboy2Base::bootLogoShell(void (*drawLogo)(int16_t))
} }
} }
delay(750); delay(700);
digitalWriteRGB(BLUE_LED, RGB_OFF); digitalWriteRGB(BLUE_LED, RGB_OFF);
bootLogoExtra(); bootLogoExtra();
@ -1021,7 +1021,6 @@ void Arduboy2Base::writeUnitName(char* name)
EEPROM.update(dest, done ? 0x00 : name[src]); EEPROM.update(dest, done ? 0x00 : name[src]);
dest++; dest++;
} }
} }
bool Arduboy2Base::readShowUnitNameFlag() bool Arduboy2Base::readShowUnitNameFlag()