-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable SPI2 on subset of stm32l0x1 devices
There are members of the stm32l0x1 subfamily that thave two SPIs. In particular the STM32l051 and the STM32l071. Compile tested as: cargo build --release --example spi2 --features mcu-STM32L051C8Tx (builds) cargo build --release --example spi2 --features mcu-STM32L031C6Tx (fails to build, as this subfamily only has 1 SPI) but not run on actual hardware.
- Loading branch information
Showing
3 changed files
with
77 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
//! An example to show the configuration and usage of SPI1 and SPI2 on `stm32l0x2`, `stm32l0x3` and | ||
//! the subset of `stm32l0x1` series that have two SPI ports | ||
//! | ||
#![deny(unsafe_code)] | ||
#![no_main] | ||
#![no_std] | ||
|
||
extern crate panic_halt; | ||
|
||
use cortex_m_rt::entry; | ||
use stm32l0xx_hal::{pac, prelude::*, rcc::Config, spi}; | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
let dp = pac::Peripherals::take().unwrap(); | ||
|
||
// Configure the clock. | ||
let mut rcc = dp.RCC.freeze(Config::hsi16()); | ||
|
||
// Acquire the GPIOA peripheral. This also enables the clock for GPIOA in | ||
// the RCC register. | ||
let gpioa = dp.GPIOA.split(&mut rcc); | ||
|
||
let mut nss = gpioa.pa4.into_push_pull_output(); | ||
let sck = gpioa.pa5; | ||
let miso = gpioa.pa6; | ||
let mosi = gpioa.pa7; | ||
|
||
// Initialise the SPI1 peripheral. | ||
let mut spi = dp | ||
.SPI1 | ||
.spi((sck, miso, mosi), spi::MODE_0, 100_000.Hz(), &mut rcc); | ||
|
||
let gpiob = dp.GPIOB.split(&mut rcc); | ||
|
||
let mut nss2 = gpiob.pb12.into_push_pull_output(); | ||
let sck2 = gpiob.pb13; | ||
let miso2 = gpiob.pb14; | ||
let mosi2 = gpiob.pb15; | ||
|
||
// Initialise the SPI2 peripheral. | ||
let mut spi2 = dp | ||
.SPI2 | ||
.spi((sck2, miso2, mosi2), spi::MODE_0, 100_000.Hz(), &mut rcc); | ||
|
||
loop { | ||
nss.set_low().unwrap(); | ||
spi.write(&[0, 1]).unwrap(); | ||
nss.set_high().unwrap(); | ||
|
||
nss2.set_low().unwrap(); | ||
spi2.write(&[0, 1]).unwrap(); | ||
nss2.set_high().unwrap(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters