@@ -387,7 +387,7 @@ int main(void)
387
387
UCSR0C = (1 <<UCSZ00 ) | (1 <<UCSZ01 );
388
388
389
389
/* Enable internal pull-up resistor on pin D0 (RX), in order
390
- to supress line noise that prevents the bootloader from
390
+ to suppress line noise that prevents the bootloader from
391
391
timing out (DAM: 20070509) */
392
392
DDRD &= ~_BV (PIND0 );
393
393
PORTD |= _BV (PIND0 );
@@ -408,7 +408,7 @@ int main(void)
408
408
409
409
#if defined __AVR_ATmega1280__
410
410
/* Enable internal pull-up resistor on pin D0 (RX), in order
411
- to supress line noise that prevents the bootloader from
411
+ to suppress line noise that prevents the bootloader from
412
412
timing out (DAM: 20070509) */
413
413
/* feature added to the Arduino Mega --DC: 080930 */
414
414
DDRE &= ~_BV (PINE0 );
@@ -447,7 +447,7 @@ int main(void)
447
447
448
448
449
449
/* Request programmer ID */
450
- /* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundry */
450
+ /* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundary */
451
451
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
452
452
else if (ch == '1' ) {
453
453
if (getch () == ' ' ) {
@@ -730,7 +730,7 @@ int main(void)
730
730
if (!flags .rampz ) putch (pgm_read_byte_near (address .word ));
731
731
#if defined(__AVR_ATmega128__ ) || defined(__AVR_ATmega1280__ )
732
732
else putch (pgm_read_byte_far (address .word + 0x10000 ));
733
- // Hmmmm, yuck FIXME when m256 arrvies
733
+ // Hmmmm, yuck FIXME when m256 arrives
734
734
#endif
735
735
address .word ++ ;
736
736
}
0 commit comments