Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gpio: DummyPin + hub75_i8080 example #1769

Merged
merged 7 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions esp-hal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- ESP32-S3: Expose optional HSYNC input in LCD_CAM (#1707)
- ESP32-C6: Support lp-core as wake-up source (#1723)
- Add support for GPIO wake-up source (#1724)
- gpio: add DummyPin (#1769)
- dma: add Mem2Mem to support memory to memory transfer (#1738)
- Add `uart` wake source (#1727)
- `#[ram(persistent)]` option to replace the unsound `uninitialized` option (#1677)
Expand Down
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 @@ -67,6 +67,7 @@ use crate::{
};

pub mod any_pin;
pub mod dummy_pin;

#[cfg(soc_etm)]
pub mod etm;
Expand Down