use core::convert::Infallible;
#[cfg(feature = "board-redv")]
use e310x_hal::gpio::gpio0::Pin5;
#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
use e310x_hal::gpio::gpio0::{Pin19, Pin21, Pin22};
use e310x_hal::{
gpio::{Invert, Output, Regular},
prelude::*,
};
#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
pub type RED = Pin22<Output<Regular<Invert>>>;
#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
pub type GREEN = Pin19<Output<Regular<Invert>>>;
#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
pub type BLUE = Pin21<Output<Regular<Invert>>>;
#[cfg(feature = "board-redv")]
pub type BLUE = Pin5<Output<Regular<Invert>>>;
#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
pub fn rgb<X, Y, Z>(red: Pin22<X>, green: Pin19<Y>, blue: Pin21<Z>) -> (RED, GREEN, BLUE) {
let red: RED = red.into_inverted_output();
let green: GREEN = green.into_inverted_output();
let blue: BLUE = blue.into_inverted_output();
(red, green, blue)
}
pub trait Led: StatefulOutputPin<Error = Infallible> {
fn is_on(&mut self) -> bool;
fn off(&mut self);
fn on(&mut self);
fn toggle(&mut self) {
StatefulOutputPin::toggle(self).unwrap();
}
}
macro_rules! led_impl {
($($LEDTYPE:ident),+) => {
$(
impl Led for $LEDTYPE {
fn is_on(&mut self) -> bool {
self.is_set_low().unwrap()
}
fn off(&mut self) {
self.set_high().unwrap();
}
fn on(&mut self) {
self.set_low().unwrap();
}
}
)+
}
}
#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
led_impl!(RED, GREEN);
led_impl!(BLUE);