Skip to content
Snippets Groups Projects
Unverified Commit 4ca21096 authored by Alexandre Abadie's avatar Alexandre Abadie Committed by GitHub
Browse files

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
...@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment