Skip to content

Commit

Permalink
gpio: DummyPin + hub75_i8080 example
Browse files Browse the repository at this point in the history
  • Loading branch information
liebman committed Jul 7, 2024
1 parent 967c478 commit 4a8a505
Show file tree
Hide file tree
Showing 4 changed files with 630 additions and 0 deletions.
134 changes: 134 additions & 0 deletions esp-hal/src/gpio/dummy_pin.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
//! "Dummy" pins".
//! These are useful to pass them into peripheral drivers where you don't want
//! an actual pin but one is required.
use super::*;

/// DummyPin, not useful everywhere as it panics if number() is called
#[derive(Default)]
pub struct DummyPin {
value: bool,
}

impl DummyPin {
/// Create a dummy pin.
pub fn new() -> Self {
Self { value: false }
}
}

impl crate::peripheral::Peripheral for DummyPin {
type P = Self;

unsafe fn clone_unchecked(&mut self) -> Self::P {
Self { value: self.value }
}
}

impl private::Sealed for DummyPin {}

impl Pin for DummyPin {
fn number(&self, _: private::Internal) -> u8 {
panic!("DummyPin not supported here!");
}

fn sleep_mode(&mut self, _on: bool, _: private::Internal) {}

fn set_alternate_function(&mut self, _alternate: AlternateFunction, _: private::Internal) {}

fn is_listening(&self, _: private::Internal) -> bool {
false
}

fn listen_with_options(
&mut self,
_event: Event,
_int_enable: bool,
_nmi_enable: bool,
_wake_up_from_light_sleep: bool,
_: private::Internal,
) {
}

fn unlisten(&mut self, _: private::Internal) {}

fn is_interrupt_set(&self, _: private::Internal) -> bool {
false
}

fn clear_interrupt(&mut self, _: private::Internal) {}

fn wakeup_enable(&mut self, _enable: bool, _event: WakeEvent, _: private::Internal) {}
}

impl OutputPin for DummyPin {
fn set_to_open_drain_output(&mut self, _: private::Internal) {}

fn set_to_push_pull_output(&mut self, _: private::Internal) {}

fn enable_output(&mut self, _on: bool, _: private::Internal) {}

fn set_output_high(&mut self, on: bool, _: private::Internal) {
self.value = on;
}

fn set_drive_strength(&mut self, _strength: DriveStrength, _: private::Internal) {}

fn enable_open_drain(&mut self, _on: bool, _: private::Internal) {}

fn enable_output_in_sleep_mode(&mut self, _on: bool, _: private::Internal) {}

fn internal_pull_up_in_sleep_mode(&mut self, _on: bool, _: private::Internal) {}

fn internal_pull_down_in_sleep_mode(&mut self, _on: bool, _: private::Internal) {}

fn internal_pull_up(&mut self, _on: bool, _: private::Internal) {}

fn internal_pull_down(&mut self, _on: bool, _: private::Internal) {}

fn connect_peripheral_to_output(&mut self, _signal: OutputSignal, _: private::Internal) {}

fn connect_peripheral_to_output_with_options(
&mut self,
_signal: OutputSignal,
_invert: bool,
_invert_enable: bool,
_enable_from_gpio: bool,
_force_via_gpio_mux: bool,
_: private::Internal,
) {
}

fn disconnect_peripheral_from_output(&mut self, _: private::Internal) {}

fn is_set_high(&self, _: private::Internal) -> bool {
self.value
}
}

impl InputPin for DummyPin {
fn init_input(&self, _pull_down: bool, _pull_up: bool, _: private::Internal) {}

fn set_to_input(&mut self, _: private::Internal) {}

fn enable_input(&mut self, _on: bool, _: private::Internal) {}

fn enable_input_in_sleep_mode(&mut self, _on: bool, _: private::Internal) {}

fn is_input_high(&self, _: private::Internal) -> bool {
self.value
}

fn connect_input_to_peripheral(&mut self, _signal: InputSignal, _: private::Internal) {}

fn connect_input_to_peripheral_with_options(
&mut self,
_signal: InputSignal,
_invert: bool,
_force_via_gpio_mux: bool,
_: private::Internal,
) {
}

fn disconnect_input_from_peripheral(&mut self, _signal: InputSignal, _: private::Internal) {}
}
1 change: 1 addition & 0 deletions esp-hal/src/gpio/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ use crate::{
};

pub mod any_pin;
pub mod dummy_pin;

#[cfg(soc_etm)]
pub mod etm;
Expand Down
1 change: 1 addition & 0 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ publish = false

[dependencies]
aes = "0.8.4"
bitfield = { version = "0.14.0", optional = true }
bleps = { git = "https://github.com/bjoernQ/bleps", package = "bleps", rev = "a5148d8ae679e021b78f53fd33afb8bb35d0b62e", features = [ "macros", "async"] }
cfg-if = "1.0.0"
critical-section = "1.1.2"
Expand Down
Loading

0 comments on commit 4a8a505

Please sign in to comment.