fix duplicate 'e' command

This commit is contained in:
Felix Rusu 2014-02-09 14:23:24 -05:00
parent cec7f05940
commit 85d8385de1
1 changed files with 2 additions and 2 deletions

View File

@ -73,9 +73,9 @@ void loop() {
while(flash.busy());
Serial.println();
}
if (input == 'e')
if (input == 'D')
{
Serial.print("Erasing Flash chip ... ");
Serial.print("Deleting Flash chip content... ");
flash.chipErase();
while(flash.busy());
Serial.println("DONE");