2021-11-24 03:18:30 +01:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
use defmt::assert;
|
|
|
|
use embassy::executor::Spawner;
|
|
|
|
use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed};
|
|
|
|
use embassy_stm32::Peripherals;
|
|
|
|
use embedded_hal::digital::v2::{InputPin, OutputPin};
|
|
|
|
use example_common::*;
|
|
|
|
|
2021-12-07 05:00:35 +01:00
|
|
|
#[embassy::main(config = "config()")]
|
2021-11-24 03:18:30 +01:00
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
|
|
|
info!("Hello World!");
|
|
|
|
|
2021-12-07 00:28:32 +01:00
|
|
|
// Arduino pins D0 and D1
|
|
|
|
// They're connected together with a 1K resistor.
|
|
|
|
#[cfg(feature = "stm32g491re")]
|
|
|
|
let (mut a, mut b) = (p.PC4, p.PC5);
|
|
|
|
#[cfg(feature = "stm32g071rb")]
|
|
|
|
let (mut a, mut b) = (p.PC4, p.PC5);
|
|
|
|
#[cfg(feature = "stm32f429zi")]
|
2021-11-24 03:18:30 +01:00
|
|
|
let (mut a, mut b) = (p.PG14, p.PG9);
|
2021-12-07 01:24:26 +01:00
|
|
|
#[cfg(feature = "stm32wb55rg")]
|
|
|
|
let (mut a, mut b) = (p.PA3, p.PA2);
|
|
|
|
#[cfg(feature = "stm32h755zi")]
|
|
|
|
let (mut a, mut b) = (p.PB6, p.PB7);
|
2021-11-24 03:18:30 +01:00
|
|
|
|
|
|
|
// Test initial output
|
|
|
|
{
|
|
|
|
let b = Input::new(&mut b, Pull::None);
|
|
|
|
|
|
|
|
{
|
|
|
|
let _a = Output::new(&mut a, Level::Low, Speed::Low);
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_low().unwrap());
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let _a = Output::new(&mut a, Level::High, Speed::Low);
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_high().unwrap());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test input no pull
|
|
|
|
{
|
|
|
|
let b = Input::new(&mut b, Pull::None);
|
|
|
|
// no pull, the status is undefined
|
|
|
|
|
|
|
|
let mut a = Output::new(&mut a, Level::Low, Speed::Low);
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_low().unwrap());
|
|
|
|
a.set_high().unwrap();
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_high().unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test input pulldown
|
|
|
|
{
|
|
|
|
let b = Input::new(&mut b, Pull::Down);
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_low().unwrap());
|
|
|
|
|
|
|
|
let mut a = Output::new(&mut a, Level::Low, Speed::Low);
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_low().unwrap());
|
|
|
|
a.set_high().unwrap();
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_high().unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test input pullup
|
|
|
|
{
|
|
|
|
let b = Input::new(&mut b, Pull::Up);
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_high().unwrap());
|
|
|
|
|
|
|
|
let mut a = Output::new(&mut a, Level::Low, Speed::Low);
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_low().unwrap());
|
|
|
|
a.set_high().unwrap();
|
2021-12-07 05:00:35 +01:00
|
|
|
delay();
|
2021-11-24 03:18:30 +01:00
|
|
|
assert!(b.is_high().unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
info!("Test OK");
|
|
|
|
cortex_m::asm::bkpt();
|
|
|
|
}
|
2021-12-07 05:00:35 +01:00
|
|
|
|
|
|
|
fn delay() {
|
|
|
|
#[cfg(feature = "stm32h755zi")]
|
|
|
|
cortex_m::asm::delay(10000);
|
|
|
|
#[cfg(not(feature = "stm32h755zi"))]
|
|
|
|
cortex_m::asm::delay(1000);
|
|
|
|
}
|