diff options
author | Jacques Supcik <jacques.supcik@hefr.ch> | 2013-10-06 10:59:53 +0200 |
---|---|---|
committer | Jacques Supcik <jacques.supcik@hefr.ch> | 2013-10-06 10:59:53 +0200 |
commit | 85018c2f47ca13d22db96e718e05f2a4cec31056 (patch) | |
tree | a2b98fc588674821c7f0527dd691b3cf72ec6797 /bootloaders | |
parent | 0ade989a2d6b8408483902533270435d3cb155a4 (diff) |
Fix indentation (cosmetic)
Diffstat (limited to 'bootloaders')
-rwxr-xr-x | bootloaders/atmega/ATmegaBOOT_168.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloaders/atmega/ATmegaBOOT_168.c b/bootloaders/atmega/ATmegaBOOT_168.c index 2b9fefa..880cf9b 100755 --- a/bootloaders/atmega/ATmegaBOOT_168.c +++ b/bootloaders/atmega/ATmegaBOOT_168.c @@ -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*/
|