Skip to content

Commit

Permalink
gpio: DummyPin + hub75_i8080 example (#1769)
Browse files Browse the repository at this point in the history
* gpio: DummyPin + hub75_i8080 example

* changelog

* cmall cleanup in the example

* reduce memory usage by 50% by using i8080 pixel clock

* updated to latest git hal version

* remove complex hub75 example

* remove complex hub75 example dep
  • Loading branch information
liebman committed Jul 15, 2024
1 parent 1631f22 commit 10c900a
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 0 deletions.
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

0 comments on commit 10c900a

Please sign in to comment.