@@ -387,7 +387,7 @@ int main(void)
387387 UCSR0C = (1 <<UCSZ00 ) | (1 <<UCSZ01 );
388388
389389 /* 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
391391 timing out (DAM: 20070509) */
392392 DDRD &= ~_BV (PIND0 );
393393 PORTD |= _BV (PIND0 );
@@ -408,7 +408,7 @@ int main(void)
408408
409409#if defined __AVR_ATmega1280__
410410 /* 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
412412 timing out (DAM: 20070509) */
413413 /* feature added to the Arduino Mega --DC: 080930 */
414414 DDRE &= ~_BV (PINE0 );
@@ -447,7 +447,7 @@ int main(void)
447447
448448
449449 /* 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 */
451451 /* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
452452 else if (ch == '1' ) {
453453 if (getch () == ' ' ) {
@@ -730,7 +730,7 @@ int main(void)
730730 if (!flags .rampz ) putch (pgm_read_byte_near (address .word ));
731731#if defined(__AVR_ATmega128__ ) || defined(__AVR_ATmega1280__ )
732732 else putch (pgm_read_byte_far (address .word + 0x10000 ));
733- // Hmmmm, yuck FIXME when m256 arrvies
733+ // Hmmmm, yuck FIXME when m256 arrives
734734#endif
735735 address .word ++ ;
736736 }
0 commit comments