Flex/ input pull down test done

This commit is contained in:
amugniere@gmail.com 2022-07-08 22:08:14 +02:00
parent 555f18aa95
commit 1d91405d4d

View File

@ -138,26 +138,29 @@ async fn main(_spawner: Spawner, p: Peripherals) {
assert!(b.is_high()); assert!(b.is_high());
} }
/*
// Test input pulldown // Test input pulldown
{ {
let b = Input::new(&mut b, Pull::Down); let mut b = Flex::new(&mut b);
b.set_as_input(Pull::Down); // no pull, the status is undefined
delay(); delay();
assert!(b.is_low()); assert!(b.is_low());
let mut a = Output::new(&mut a, Level::Low, Speed::Low); let mut a = Flex::new(&mut a);
a.set_low();
a.set_as_output(Speed::Low);
delay(); delay();
assert!(b.is_low()); assert!(b.is_low());
a.set_high(); a.set_high();
delay(); delay();
assert!(b.is_high()); assert!(b.is_high());
} }
/*
// Test input pullup // Test input pullup
{ {
let b = Input::new(&mut b, Pull::Up); let b = Input::new(&mut b, Pull::Down);
delay(); delay();
assert!(b.is_high()); assert!(b.is_low());
let mut a = Output::new(&mut a, Level::Low, Speed::Low); let mut a = Output::new(&mut a, Level::Low, Speed::Low);
delay(); delay();