Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
761258cf
Commit
761258cf
authored
7 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
boards/common/nrf52xxxdk: move LED mask to board.h
parent
1d38c7d9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
boards/common/nrf52xxxdk/board.c
+2
-2
2 additions, 2 deletions
boards/common/nrf52xxxdk/board.c
boards/nrf52840dk/include/board.h
+1
-0
1 addition, 0 deletions
boards/nrf52840dk/include/board.h
boards/nrf52dk/include/board.h
+1
-0
1 addition, 0 deletions
boards/nrf52dk/include/board.h
with
4 additions
and
2 deletions
boards/common/nrf52xxxdk/board.c
+
2
−
2
View file @
761258cf
...
...
@@ -24,8 +24,8 @@
void
board_init
(
void
)
{
/* initialize the boards LEDs */
LED_PORT
->
DIRSET
=
(
LED
0_MASK
|
LED1_MASK
|
LED2_MASK
|
LED3
_MASK
);
LED_PORT
->
OUTSET
=
(
LED
0_MASK
|
LED1_MASK
|
LED2_MASK
|
LED3
_MASK
);
LED_PORT
->
DIRSET
=
(
LED_MASK
);
LED_PORT
->
OUTSET
=
(
LED_MASK
);
/* initialize the CPU */
cpu_init
();
...
...
This diff is collapsed.
Click to expand it.
boards/nrf52840dk/include/board.h
+
1
−
0
View file @
761258cf
...
...
@@ -42,6 +42,7 @@ extern "C" {
#define LED1_MASK (1 << 14)
#define LED2_MASK (1 << 15)
#define LED3_MASK (1 << 16)
#define LED_MASK (LED0_MASK | LED1_MASK | LED2_MASK | LED3_MASK)
#define LED0_ON (LED_PORT->OUTCLR = LED0_MASK)
#define LED0_OFF (LED_PORT->OUTSET = LED0_MASK)
...
...
This diff is collapsed.
Click to expand it.
boards/nrf52dk/include/board.h
+
1
−
0
View file @
761258cf
...
...
@@ -42,6 +42,7 @@ extern "C" {
#define LED1_MASK (1 << 18)
#define LED2_MASK (1 << 19)
#define LED3_MASK (1 << 20)
#define LED_MASK (LED0_MASK | LED1_MASK | LED2_MASK | LED3_MASK)
#define LED0_ON (LED_PORT->OUTCLR = LED0_MASK)
#define LED0_OFF (LED_PORT->OUTSET = LED0_MASK)
...
...
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