Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
ArduinoCore-avr
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
ArduinoCore-avr
Commits
44e1037e
Unverified
Commit
44e1037e
authored
Oct 28, 2022
by
per1234
Committed by
GitHub
Oct 28, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #506 from per1234/fix-misspellings
Fix misspelled words in comments
parents
5fbe0c2d
4d8d41e9
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
26 additions
and
26 deletions
+26
-26
bootloaders/atmega/ATmegaBOOT_168.c
bootloaders/atmega/ATmegaBOOT_168.c
+4
-4
bootloaders/atmega8/ATmegaBOOT.c
bootloaders/atmega8/ATmegaBOOT.c
+2
-2
bootloaders/bt/ATmegaBOOT_168.c
bootloaders/bt/ATmegaBOOT_168.c
+2
-2
bootloaders/caterina-Arduino_Robot/Makefile
bootloaders/caterina-Arduino_Robot/Makefile
+2
-2
bootloaders/caterina-LilyPadUSB/Makefile
bootloaders/caterina-LilyPadUSB/Makefile
+2
-2
bootloaders/caterina/Makefile
bootloaders/caterina/Makefile
+2
-2
bootloaders/gemma/avrdude.conf
bootloaders/gemma/avrdude.conf
+2
-2
bootloaders/lilypad/src/ATmegaBOOT.c
bootloaders/lilypad/src/ATmegaBOOT.c
+3
-3
bootloaders/stk500v2/Makefile
bootloaders/stk500v2/Makefile
+1
-1
cores/arduino/CDC.cpp
cores/arduino/CDC.cpp
+1
-1
cores/arduino/USBCore.h
cores/arduino/USBCore.h
+1
-1
firmwares/atmegaxxu2/arduino-usbdfu/makefile
firmwares/atmegaxxu2/arduino-usbdfu/makefile
+2
-2
firmwares/atmegaxxu2/arduino-usbserial/makefile
firmwares/atmegaxxu2/arduino-usbserial/makefile
+2
-2
No files found.
bootloaders/atmega/ATmegaBOOT_168.c
View file @
44e1037e
...
...
@@ -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 sup
p
ress line noise that prevents the bootloader from
timing out (DAM: 20070509) */
DDRD
&=
~
_BV
(
PIND0
);
PORTD
|=
_BV
(
PIND0
);
...
...
@@ -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 sup
p
ress line noise that prevents the bootloader from
timing out (DAM: 20070509) */
/* feature added to the Arduino Mega --DC: 080930 */
DDRE
&=
~
_BV
(
PINE0
);
...
...
@@ -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 bound
a
ry */
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
else
if
(
ch
==
'1'
)
{
if
(
getch
()
==
' '
)
{
...
...
@@ -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 arr
vi
es
// Hmmmm, yuck FIXME when m256 arr
iv
es
#endif
address
.
word
++
;
}
...
...
bootloaders/atmega8/ATmegaBOOT.c
View file @
44e1037e
...
...
@@ -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 bound
a
ry */
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
else
if
(
ch
==
'1'
)
{
if
(
getch
()
==
' '
)
{
...
...
@@ -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; // exte
n
d the delay once entered prog.mode
}
/* Leave programming mode */
...
...
bootloaders/bt/ATmegaBOOT_168.c
View file @
44e1037e
...
...
@@ -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 bound
a
ry */
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
else
if
(
ch
==
'1'
)
{
if
(
getch
()
==
' '
)
{
...
...
@@ -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 arr
vi
es
// Hmmmm, yuck FIXME when m256 arr
iv
es
#endif
address
.
word
++
;
}
...
...
bootloaders/caterina-Arduino_Robot/Makefile
View file @
44e1037e
...
...
@@ -191,7 +191,7 @@ DEBUG = dwarf-2
# List any extra directories to look for include files here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS
=
$(LUFA_PATH)
/
...
...
@@ -331,7 +331,7 @@ MATH_LIB = -lm
# List any extra directories to look for libraries here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS
=
...
...
bootloaders/caterina-LilyPadUSB/Makefile
View file @
44e1037e
...
...
@@ -180,7 +180,7 @@ DEBUG = dwarf-2
# List any extra directories to look for include files here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS
=
$(LUFA_PATH)
/
...
...
@@ -320,7 +320,7 @@ MATH_LIB = -lm
# List any extra directories to look for libraries here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS
=
...
...
bootloaders/caterina/Makefile
View file @
44e1037e
...
...
@@ -187,7 +187,7 @@ DEBUG = dwarf-2
# List any extra directories to look for include files here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS
=
$(LUFA_PATH)
/
...
...
@@ -327,7 +327,7 @@ MATH_LIB = -lm
# List any extra directories to look for libraries here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS
=
...
...
bootloaders/gemma/avrdude.conf
View file @
44e1037e
...
...
@@ -170,7 +170,7 @@
#
# INSTRUCTION FORMATS
#
# Instruction formats are specified as a comma sep
e
rated list of
# Instruction formats are specified as a comma sep
a
rated 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:
...
...
@@ -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 mul
it
ple devices, then look for unique information (like SN)
# If you have mul
ti
ple 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,
...
...
bootloaders/lilypad/src/ATmegaBOOT.c
View file @
44e1037e
...
...
@@ -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 sup
p
ress line noise that prevents the bootloader from
timing out (DAM: 20070509) */
DDRD
&=
~
_BV
(
PIND0
);
PORTD
|=
_BV
(
PIND0
);
...
...
@@ -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 bound
a
ry */
/* Would need to selectively manipulate RAMPZ, and it's only 9 characters anyway so who cares. */
else
if
(
ch
==
'1'
)
{
if
(
getch
()
==
' '
)
{
...
...
@@ -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 arr
vi
es
// Hmmmm, yuck FIXME when m256 arr
iv
es
#endif
address
.
word
++
;
}
...
...
bootloaders/stk500v2/Makefile
View file @
44e1037e
...
...
@@ -90,7 +90,7 @@ DEBUG = dwarf-2
# List any extra directories to look for include files here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS
=
...
...
cores/arduino/CDC.cpp
View file @
44e1037e
...
...
@@ -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
())
{
// ho
r
ray, we got a new bootloader!
// ho
o
ray, we got a new bootloader!
magic_key_pos
=
(
RAMEND
-
1
);
}
#endif
...
...
cores/arduino/USBCore.h
View file @
44e1037e
...
...
@@ -191,7 +191,7 @@ typedef struct
}
EndpointDescriptor
;
// Interface Association Descriptor
// Used to bind 2 interfaces together in CDC compos
t
ite device
// Used to bind 2 interfaces together in CDC composite device
typedef
struct
{
u8
len
;
// 8
...
...
firmwares/atmegaxxu2/arduino-usbdfu/makefile
View file @
44e1037e
...
...
@@ -171,7 +171,7 @@ DEBUG = dwarf-2
# List any extra directories to look for include files here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS
=
$(LUFA_PATH)
/
...
...
@@ -310,7 +310,7 @@ MATH_LIB = -lm
# List any extra directories to look for libraries here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS
=
...
...
firmwares/atmegaxxu2/arduino-usbserial/makefile
View file @
44e1037e
...
...
@@ -188,7 +188,7 @@ DEBUG = dwarf-2
# List any extra directories to look for include files here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRAINCDIRS
=
$(LUFA_PATH)
/
...
...
@@ -328,7 +328,7 @@ MATH_LIB = -lm
# List any extra directories to look for libraries here.
# Each directory must be sep
e
rated by a space.
# Each directory must be sep
a
rated by a space.
# Use forward slashes for directory separators.
# For a directory that has spaces, enclose it in quotes.
EXTRALIBDIRS
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment