Skip to content

Commit 4d8d41e

Browse files
committed
Fix misspelled words in comments
This project uses the codespell tool used to check for commonly misspelled words in the files of the repository. A recent update to the tool's misspelled words dictionary resulted in the identification of some occurrences of a misspelled word in the comments. In addition to correcting the detected misspellings, I did a quick scan over the repository and identified a few additional misspellings to correct.
1 parent 5fbe0c2 commit 4d8d41e

File tree

13 files changed

+26
-26
lines changed

13 files changed

+26
-26
lines changed

bootloaders/atmega/ATmegaBOOT_168.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -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
}

bootloaders/atmega8/ATmegaBOOT.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ int main(void)
199199
}
200200

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

254254
/* Leave programming mode */

bootloaders/bt/ATmegaBOOT_168.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ putch(0x0D);
465465

466466

467467
/* Request programmer ID */
468-
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundry */
468+
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundary */
469469
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
470470
else if(ch=='1') {
471471
if (getch() == ' ') {
@@ -727,7 +727,7 @@ putch(0x0D);
727727
if (!flags.rampz) putch(pgm_read_byte_near(address.word));
728728
#if defined __AVR_ATmega128__
729729
else putch(pgm_read_byte_far(address.word + 0x10000));
730-
// Hmmmm, yuck FIXME when m256 arrvies
730+
// Hmmmm, yuck FIXME when m256 arrives
731731
#endif
732732
address.word++;
733733
}

bootloaders/caterina-Arduino_Robot/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ DEBUG = dwarf-2
191191

192192

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

332332

333333
# List any extra directories to look for libraries here.
334-
# Each directory must be seperated by a space.
334+
# Each directory must be separated by a space.
335335
# Use forward slashes for directory separators.
336336
# For a directory that has spaces, enclose it in quotes.
337337
EXTRALIBDIRS =

bootloaders/caterina-LilyPadUSB/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ DEBUG = dwarf-2
180180

181181

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

321321

322322
# List any extra directories to look for libraries here.
323-
# Each directory must be seperated by a space.
323+
# Each directory must be separated by a space.
324324
# Use forward slashes for directory separators.
325325
# For a directory that has spaces, enclose it in quotes.
326326
EXTRALIBDIRS =

bootloaders/caterina/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ DEBUG = dwarf-2
187187

188188

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

328328

329329
# List any extra directories to look for libraries here.
330-
# Each directory must be seperated by a space.
330+
# Each directory must be separated by a space.
331331
# Use forward slashes for directory separators.
332332
# For a directory that has spaces, enclose it in quotes.
333333
EXTRALIBDIRS =

bootloaders/gemma/avrdude.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
#
171171
# INSTRUCTION FORMATS
172172
#
173-
# Instruction formats are specified as a comma seperated list of
173+
# Instruction formats are specified as a comma separated list of
174174
# string values containing information (bit specifiers) about each
175175
# of the 32 bits of the instruction. Bit specifiers may be one of
176176
# the following formats:
@@ -365,7 +365,7 @@ programmer
365365
# http://flashrom.org/FT2232SPI_Programmer
366366
#
367367
# The drivers will look for a specific device and use the first one found.
368-
# If you have mulitple devices, then look for unique information (like SN)
368+
# If you have multiple devices, then look for unique information (like SN)
369369
# And fill that in here.
370370
#
371371
# Note that the pin numbers for the main ISP signals (reset, sck,

bootloaders/lilypad/src/ATmegaBOOT.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ int main(void)
330330
UCSR0C = (1<<UCSZ00) | (1<<UCSZ01);
331331

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

382382

383383
/* Request programmer ID */
384-
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundry */
384+
/* Not using PROGMEM string due to boot block in m128 being beyond 64kB boundary */
385385
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
386386
else if(ch=='1') {
387387
if (getch() == ' ') {
@@ -649,7 +649,7 @@ int main(void)
649649
if (!flags.rampz) putch(pgm_read_byte_near(address.word));
650650
#if defined __AVR_ATmega128__
651651
else putch(pgm_read_byte_far(address.word + 0x10000));
652-
// Hmmmm, yuck FIXME when m256 arrvies
652+
// Hmmmm, yuck FIXME when m256 arrives
653653
#endif
654654
address.word++;
655655
}

bootloaders/stk500v2/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ DEBUG = dwarf-2
9090

9191

9292
# List any extra directories to look for include files here.
93-
# Each directory must be seperated by a space.
93+
# Each directory must be separated by a space.
9494
# Use forward slashes for directory separators.
9595
# For a directory that has spaces, enclose it in quotes.
9696
EXTRAINCDIRS =

cores/arduino/CDC.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ bool CDC_Setup(USBSetup& setup)
119119
// For future boards save the key in the inproblematic RAMEND
120120
// Which is reserved for the main() return value (which will never return)
121121
if (isLUFAbootloader()) {
122-
// horray, we got a new bootloader!
122+
// hooray, we got a new bootloader!
123123
magic_key_pos = (RAMEND-1);
124124
}
125125
#endif

cores/arduino/USBCore.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ typedef struct
191191
} EndpointDescriptor;
192192

193193
// Interface Association Descriptor
194-
// Used to bind 2 interfaces together in CDC compostite device
194+
// Used to bind 2 interfaces together in CDC composite device
195195
typedef struct
196196
{
197197
u8 len; // 8

firmwares/atmegaxxu2/arduino-usbdfu/makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ DEBUG = dwarf-2
171171

172172

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

311311

312312
# List any extra directories to look for libraries here.
313-
# Each directory must be seperated by a space.
313+
# Each directory must be separated by a space.
314314
# Use forward slashes for directory separators.
315315
# For a directory that has spaces, enclose it in quotes.
316316
EXTRALIBDIRS =

firmwares/atmegaxxu2/arduino-usbserial/makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ DEBUG = dwarf-2
188188

189189

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

329329

330330
# List any extra directories to look for libraries here.
331-
# Each directory must be seperated by a space.
331+
# Each directory must be separated by a space.
332332
# Use forward slashes for directory separators.
333333
# For a directory that has spaces, enclose it in quotes.
334334
EXTRALIBDIRS =

0 commit comments

Comments
 (0)