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
4ca21096
Unverified
Commit
4ca21096
authored
6 years ago
by
Alexandre Abadie
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #9154 from maribu/lpc2387
cpu/lpc2387: Fixed broken SPI driver
parents
f3073149
17a5101b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cpu/lpc2387/periph/spi.c
+2
-2
2 additions, 2 deletions
cpu/lpc2387/periph/spi.c
with
2 additions
and
2 deletions
cpu/lpc2387/periph/spi.c
+
2
−
2
View file @
4ca21096
...
@@ -47,8 +47,6 @@ void spi_init(spi_t bus)
...
@@ -47,8 +47,6 @@ void spi_init(spi_t bus)
{
{
assert
(
bus
==
SPI_DEV
(
0
));
assert
(
bus
==
SPI_DEV
(
0
));
/* interface setup */
SSP0CR0
=
7
;
/* configure pins */
/* configure pins */
spi_init_pins
(
bus
);
spi_init_pins
(
bus
);
/* power off the bus (default is on) */
/* power off the bus (default is on) */
...
@@ -81,6 +79,8 @@ int spi_acquire(spi_t bus, spi_cs_t cs, spi_mode_t mode, spi_clk_t clk)
...
@@ -81,6 +79,8 @@ int spi_acquire(spi_t bus, spi_cs_t cs, spi_mode_t mode, spi_clk_t clk)
mutex_lock
(
&
lock
);
mutex_lock
(
&
lock
);
/* power on */
/* power on */
PCONP
|=
(
PCSSP0
);
PCONP
|=
(
PCSSP0
);
/* interface setup */
SSP0CR0
=
7
;
/* configure bus clock */
/* configure bus clock */
lpc2387_pclk_scale
(
CLOCK_CORECLOCK
/
1000
,
(
uint32_t
)
clk
,
&
pclksel
,
&
cpsr
);
lpc2387_pclk_scale
(
CLOCK_CORECLOCK
/
1000
,
(
uint32_t
)
clk
,
&
pclksel
,
&
cpsr
);
...
...
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