1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-17 06:52:18 +01:00
This commit is contained in:
Federico Fissore 2013-10-14 12:42:42 +02:00
commit bef7b94ea7
2 changed files with 4 additions and 3 deletions

View File

@ -950,10 +950,10 @@ char getch(void)
count++;
if (count > MAX_TIME_COUNT)
app_start();
}
return UDR0;
}
return UDR0;
}
else if(bootuart == 2) {
while(!(UCSR1A & _BV(RXC1))) {
/* 20060803 DojoCorp:: Addon coming from the previous Bootloader*/

View File

@ -44,6 +44,7 @@ File::File(void) {
}
File::~File(void) {
close();
// Serial.print("Deleted file object");
}