Waveform generation trait

Open
#43 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
5/5
Estimated time
Over a week
Newbie friendliness
25/100
Issue type
Feature
Clarity
Mostly clear
Activity status
Stale
Tech stack
rust
Domain
embedded-iot

Research direction

Start with the Rust sketch in the issue, focusing on the proposed Microseconds type, PinState, and WaveGen trait. Clarify the API and timing semantics for bitbanging and PWM, including repeat behavior and pin toggling. Done means the trait design is agreed and its intended waveform-generation behavior is documented.

Written by the indexing model from the issue text.

Description

I'd like to propose a waveform generation trait. This would be useful for efficient bitbanging, PWM, etc.

I will begin with simple sketch and we will see where it will lead.

pub struct Microseconds(/*What should go here? Maybe `pub u32` is fine?*/);

pub enum PinState {
    High,
    Low,
}

pub trait WaveGen {
    fn generate<I: Clone + IntoIterator<Item=Microseconds>>(&mut self, pin: Pin, initial_state: PinState, delays: I, repeat_count: u32);
}

The implementor should set the pin into state defined by initial_state, then wait for duration specified by item from delays and toggle the pin after each item.

I'd love to implement some drivers for wireless sockets I have.

Dominant language
Rust
Stars
2.7k
Forks
282
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from rust-embedded/embedded-hal

All issues in rust-embedded/embedded-hal

Similar issues

More Rust issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.