Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Arduino Core for SAMD21 CPU
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
josc941e
Arduino Core for SAMD21 CPU
Commits
bf454d85
Commit
bf454d85
authored
9 years ago
by
Sandeep Mistry
Browse files
Options
Downloads
Patches
Plain Diff
Clean up port, pin, and pin mask duplication in digitalWrite
parent
0f3f80a1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cores/arduino/wiring_digital.c
+8
-4
8 additions, 4 deletions
cores/arduino/wiring_digital.c
with
8 additions
and
4 deletions
cores/arduino/wiring_digital.c
+
8
−
4
View file @
bf454d85
...
...
@@ -82,19 +82,23 @@ void digitalWrite( uint32_t ulPin, uint32_t ulVal )
return
;
}
if
(
(
PORT
->
Group
[
g_APinDescription
[
ulPin
].
ulPort
].
DIRSET
.
reg
&
(
1ul
<<
g_APinDescription
[
ulPin
].
ulPin
))
==
0
)
{
EPortType
port
=
g_APinDescription
[
ulPin
].
ulPort
;
uint32_t
pin
=
g_APinDescription
[
ulPin
].
ulPin
;
uint32_t
pinMask
=
(
1ul
<<
pin
);
if
(
(
PORT
->
Group
[
port
].
DIRSET
.
reg
&
pinMask
)
==
0
)
{
// the pin is not an output, disable pull-up if val is LOW, otherwise enable pull-up
PORT
->
Group
[
g_APinDescription
[
ulPin
].
ulPort
].
PINCFG
[
g_APinDescription
[
ulPin
].
ulP
in
].
bit
.
PULLEN
=
(
ulVal
!=
LOW
)
;
PORT
->
Group
[
port
].
PINCFG
[
p
in
].
bit
.
PULLEN
=
(
ulVal
!=
LOW
)
;
}
switch
(
ulVal
)
{
case
LOW
:
PORT
->
Group
[
g_APinDescription
[
ulPin
].
ulPort
].
OUTCLR
.
reg
=
(
1ul
<<
g_APinDescription
[
ulPin
].
ulPin
)
;
PORT
->
Group
[
port
].
OUTCLR
.
reg
=
pinMask
;
break
;
default:
PORT
->
Group
[
g_APinDescription
[
ulPin
].
ulPort
].
OUTSET
.
reg
=
(
1ul
<<
g_APinDescription
[
ulPin
].
ulPin
)
;
PORT
->
Group
[
port
].
OUTSET
.
reg
=
pinMask
;
break
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment