mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 04:40:52 +00:00

* Refactor `systimer` and `timer` modules into a common `timer` module * Update `CHANGELOG.md` * Rebase and update new example
82 lines
2.1 KiB
Rust
82 lines
2.1 KiB
Rust
//! Demonstrates generating pulse sequences with RMT
|
|
//!
|
|
//! Connect a logic analyzer to GPIO4 to see the generated pulses.
|
|
|
|
//% CHIPS: esp32 esp32c3 esp32c6 esp32h2 esp32s2 esp32s3
|
|
//% FEATURES: async embassy embassy-executor-thread embassy-time-timg0 embassy-generic-timers
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
use embassy_executor::Spawner;
|
|
use embassy_time::{Duration, Timer};
|
|
use esp_backtrace as _;
|
|
use esp_hal::{
|
|
clock::ClockControl,
|
|
embassy,
|
|
gpio::Io,
|
|
peripherals::Peripherals,
|
|
prelude::*,
|
|
rmt::{asynch::TxChannelAsync, PulseCode, Rmt, TxChannelConfig, TxChannelCreatorAsync},
|
|
system::SystemControl,
|
|
timer::timg::TimerGroup,
|
|
};
|
|
use esp_println::println;
|
|
|
|
#[main]
|
|
async fn main(_spawner: Spawner) {
|
|
println!("Init!");
|
|
let peripherals = Peripherals::take();
|
|
let system = SystemControl::new(peripherals.SYSTEM);
|
|
let clocks = ClockControl::boot_defaults(system.clock_control).freeze();
|
|
|
|
let timg0 = TimerGroup::new_async(peripherals.TIMG0, &clocks);
|
|
embassy::init(&clocks, timg0);
|
|
|
|
let io = Io::new(peripherals.GPIO, peripherals.IO_MUX);
|
|
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(feature = "esp32h2")] {
|
|
let freq = 32.MHz();
|
|
} else {
|
|
let freq = 80.MHz();
|
|
}
|
|
};
|
|
|
|
let rmt = Rmt::new_async(peripherals.RMT, freq, &clocks).unwrap();
|
|
|
|
let mut channel = rmt
|
|
.channel0
|
|
.configure(
|
|
io.pins.gpio4.into_push_pull_output(),
|
|
TxChannelConfig {
|
|
clk_divider: 255,
|
|
..TxChannelConfig::default()
|
|
},
|
|
)
|
|
.unwrap();
|
|
|
|
let mut data = [PulseCode {
|
|
level1: true,
|
|
length1: 200,
|
|
level2: false,
|
|
length2: 50,
|
|
}; 20];
|
|
|
|
data[data.len() - 2] = PulseCode {
|
|
level1: true,
|
|
length1: 3000,
|
|
level2: false,
|
|
length2: 500,
|
|
};
|
|
data[data.len() - 1] = PulseCode::default();
|
|
|
|
loop {
|
|
println!("transmit");
|
|
channel.transmit(&data).await.unwrap();
|
|
println!("transmitted\n");
|
|
Timer::after(Duration::from_millis(500)).await;
|
|
}
|
|
}
|