Skip to content

Commit

Permalink
Merge pull request #506 from per1234/fix-misspellings
Browse files Browse the repository at this point in the history
Fix misspelled words in comments
  • Loading branch information
per1234 authored Oct 28, 2022
2 parents 5fbe0c2 + 4d8d41e commit 44e1037
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 deletions bootloaders/atmega/ATmegaBOOT_168.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ int main(void)
UCSR0C = (1<<UCSZ00) | (1<<UCSZ01);

/* Enable internal pull-up resistor on pin D0 (RX), in order
to supress line noise that prevents the bootloader from
to suppress line noise that prevents the bootloader from
timing out (DAM: 20070509) */
DDRD &= ~_BV(PIND0);
PORTD |= _BV(PIND0);
Expand All @@ -408,7 +408,7 @@ int main(void)

#if defined __AVR_ATmega1280__
/* Enable internal pull-up resistor on pin D0 (RX), in order
to supress line noise that prevents the bootloader from
to suppress line noise that prevents the bootloader from
timing out (DAM: 20070509) */
/* feature added to the Arduino Mega --DC: 080930 */
DDRE &= ~_BV(PINE0);
Expand Down Expand Up @@ -447,7 +447,7 @@ int main(void)


/* Request programmer ID */
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundry */
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundary */
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
else if(ch=='1') {
if (getch() == ' ') {
Expand Down Expand Up @@ -730,7 +730,7 @@ int main(void)
if (!flags.rampz) putch(pgm_read_byte_near(address.word));
#if defined(__AVR_ATmega128__) || defined(__AVR_ATmega1280__)
else putch(pgm_read_byte_far(address.word + 0x10000));
// Hmmmm, yuck FIXME when m256 arrvies
// Hmmmm, yuck FIXME when m256 arrives
#endif
address.word++;
}
Expand Down
4 changes: 2 additions & 2 deletions bootloaders/atmega8/ATmegaBOOT.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ int main(void)
}

/* Request programmer ID */
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundry */
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundary */
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
else if(ch=='1') {
if (getch() == ' ') {
Expand Down Expand Up @@ -248,7 +248,7 @@ int main(void)
else if(ch=='P') {
nothing_response();
// FIXME: modified only here by DojoCorp, Mumbai, India, 20050626
//time_count=0; // exted the delay once entered prog.mode
//time_count=0; // extend the delay once entered prog.mode
}

/* Leave programming mode */
Expand Down
4 changes: 2 additions & 2 deletions bootloaders/bt/ATmegaBOOT_168.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ putch(0x0D);


/* Request programmer ID */
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundry */
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundary */
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
else if(ch=='1') {
if (getch() == ' ') {
Expand Down Expand Up @@ -727,7 +727,7 @@ putch(0x0D);
if (!flags.rampz) putch(pgm_read_byte_near(address.word));
#if defined __AVR_ATmega128__
else putch(pgm_read_byte_far(address.word + 0x10000));
// Hmmmm, yuck FIXME when m256 arrvies
// Hmmmm, yuck FIXME when m256 arrives
#endif
address.word++;
}
Expand Down
4 changes: 2 additions & 2 deletions bootloaders/caterina-Arduino_Robot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ DEBUG = dwarf-2


# List any extra directories to look for include files here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(LUFA_PATH)/
Expand Down Expand Up @@ -331,7 +331,7 @@ MATH_LIB = -lm


# List any extra directories to look for libraries here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS =
Expand Down
4 changes: 2 additions & 2 deletions bootloaders/caterina-LilyPadUSB/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ DEBUG = dwarf-2


# List any extra directories to look for include files here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(LUFA_PATH)/
Expand Down Expand Up @@ -320,7 +320,7 @@ MATH_LIB = -lm


# List any extra directories to look for libraries here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS =
Expand Down
4 changes: 2 additions & 2 deletions bootloaders/caterina/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ DEBUG = dwarf-2


# List any extra directories to look for include files here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(LUFA_PATH)/
Expand Down Expand Up @@ -327,7 +327,7 @@ MATH_LIB = -lm


# List any extra directories to look for libraries here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS =
Expand Down
4 changes: 2 additions & 2 deletions bootloaders/gemma/avrdude.conf
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
#
# INSTRUCTION FORMATS
#
# Instruction formats are specified as a comma seperated list of
# Instruction formats are specified as a comma separated list of
# string values containing information (bit specifiers) about each
# of the 32 bits of the instruction. Bit specifiers may be one of
# the following formats:
Expand Down Expand Up @@ -365,7 +365,7 @@ programmer
# http://flashrom.org/FT2232SPI_Programmer
#
# The drivers will look for a specific device and use the first one found.
# If you have mulitple devices, then look for unique information (like SN)
# If you have multiple devices, then look for unique information (like SN)
# And fill that in here.
#
# Note that the pin numbers for the main ISP signals (reset, sck,
Expand Down
6 changes: 3 additions & 3 deletions bootloaders/lilypad/src/ATmegaBOOT.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ int main(void)
UCSR0C = (1<<UCSZ00) | (1<<UCSZ01);

/* Enable internal pull-up resistor on pin D0 (RX), in order
to supress line noise that prevents the bootloader from
to suppress line noise that prevents the bootloader from
timing out (DAM: 20070509) */
DDRD &= ~_BV(PIND0);
PORTD |= _BV(PIND0);
Expand Down Expand Up @@ -381,7 +381,7 @@ int main(void)


/* Request programmer ID */
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundry */
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundary */
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
else if(ch=='1') {
if (getch() == ' ') {
Expand Down Expand Up @@ -649,7 +649,7 @@ int main(void)
if (!flags.rampz) putch(pgm_read_byte_near(address.word));
#if defined __AVR_ATmega128__
else putch(pgm_read_byte_far(address.word + 0x10000));
// Hmmmm, yuck FIXME when m256 arrvies
// Hmmmm, yuck FIXME when m256 arrives
#endif
address.word++;
}
Expand Down
2 changes: 1 addition & 1 deletion bootloaders/stk500v2/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ DEBUG = dwarf-2


# List any extra directories to look for include files here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS =
Expand Down
2 changes: 1 addition & 1 deletion cores/arduino/CDC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ bool CDC_Setup(USBSetup& setup)
// For future boards save the key in the inproblematic RAMEND
// Which is reserved for the main() return value (which will never return)
if (isLUFAbootloader()) {
// horray, we got a new bootloader!
// hooray, we got a new bootloader!
magic_key_pos = (RAMEND-1);
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion cores/arduino/USBCore.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ typedef struct
} EndpointDescriptor;

// Interface Association Descriptor
// Used to bind 2 interfaces together in CDC compostite device
// Used to bind 2 interfaces together in CDC composite device
typedef struct
{
u8 len; // 8
Expand Down
4 changes: 2 additions & 2 deletions firmwares/atmegaxxu2/arduino-usbdfu/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ DEBUG = dwarf-2


# List any extra directories to look for include files here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(LUFA_PATH)/
Expand Down Expand Up @@ -310,7 +310,7 @@ MATH_LIB = -lm


# List any extra directories to look for libraries here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS =
Expand Down
4 changes: 2 additions & 2 deletions firmwares/atmegaxxu2/arduino-usbserial/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ DEBUG = dwarf-2


# List any extra directories to look for include files here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS = $(LUFA_PATH)/
Expand Down Expand Up @@ -328,7 +328,7 @@ MATH_LIB = -lm


# List any extra directories to look for libraries here.
# Each directory must be seperated by a space.
# Each directory must be separated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS =
Expand Down

0 comments on commit 44e1037

Please sign in to comment.