1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//! On-board user LEDs
//!
//! Hifive1 (+ revB)
//! - Red = Pin 22
//! - Green = Pin 19
//! - Blue = Pin 21
//!
//! RedV
//! - Blue = Pin 5

#[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};
use embedded_hal::digital::v2::{OutputPin, ToggleableOutputPin};

#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
/// Red LED
pub type RED = Pin22<Output<Regular<Invert>>>;

#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
/// Green LED
pub type GREEN = Pin19<Output<Regular<Invert>>>;

#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
/// Blue LED
pub type BLUE = Pin21<Output<Regular<Invert>>>;

#[cfg(feature = "board-redv")]
/// Blue LED
pub type BLUE = Pin5<Output<Regular<Invert>>>;

#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
/// Returns RED, GREEN and BLUE LEDs.
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)
}

/// Generic LED
pub trait Led {
    /// Turns the LED off
    fn off(&mut self);

    /// Turns the LED on
    fn on(&mut self);

    /// Toggles the LED state
    fn toggle(&mut self);
}

/// Macro to implement the Led trait for each of the board LEDs
macro_rules! led_impl {
    ($($LEDTYPE:ident),+) => {
        $(
            impl Led for $LEDTYPE {
                fn off(&mut self) {
                    self.set_low().unwrap();
                }

                fn on(&mut self) {
                    self.set_high().unwrap();
                }

                fn toggle(&mut self) {
                    ToggleableOutputPin::toggle(self).unwrap();
                }
            }
        )+
    }
}

/// Call the macro for each LED
#[cfg(any(feature = "board-hifive1", feature = "board-hifive1-revb"))]
led_impl!(RED, GREEN);

led_impl!(BLUE);