Björn Quentin 7da4444a7e
Fail RMT one-shot transactions if end-marker is missing (#2463)
* Fail RMT one-shot transactions if end-marker is missing

* CHANGELOG.md

* Add test

* Fix

* Fix

* RMT: use u32, turn PulseCode into a convenience trait

* Clippy

* Adapt test
2024-11-13 11:29:36 +00:00

136 lines
3.8 KiB
Rust

//! RMT Loopback Test
//% CHIPS: esp32 esp32c3 esp32c6 esp32h2 esp32s2 esp32s3
#![no_std]
#![no_main]
use esp_hal::{
prelude::*,
rmt::{PulseCode, Rmt, RxChannel, RxChannelConfig, TxChannel, TxChannelConfig},
};
use hil_test as _;
#[cfg(test)]
#[embedded_test::tests]
mod tests {
use esp_hal::rmt::Error;
use super::*;
#[init]
fn init() {}
#[test]
#[timeout(1)]
fn rmt_loopback() {
let peripherals = esp_hal::init(esp_hal::Config::default());
cfg_if::cfg_if! {
if #[cfg(feature = "esp32h2")] {
let freq = 32.MHz();
} else {
let freq = 80.MHz();
}
};
let rmt = Rmt::new(peripherals.RMT, freq).unwrap();
let (rx, tx) = hil_test::common_test_pins!(peripherals);
let tx_config = TxChannelConfig {
clk_divider: 255,
..TxChannelConfig::default()
};
let tx_channel = {
use esp_hal::rmt::TxChannelCreator;
rmt.channel0.configure(tx, tx_config).unwrap()
};
let rx_config = RxChannelConfig {
clk_divider: 255,
idle_threshold: 1000,
..RxChannelConfig::default()
};
cfg_if::cfg_if! {
if #[cfg(feature = "esp32")] {
let rx_channel = {
use esp_hal::rmt::RxChannelCreator;
rmt.channel1.configure(rx, rx_config).unwrap()
};
} else if #[cfg(feature = "esp32s2")] {
let rx_channel = {
use esp_hal::rmt::RxChannelCreator;
rmt.channel1.configure(rx, rx_config).unwrap()
};
} else if #[cfg(feature = "esp32s3")] {
let rx_channel = {
use esp_hal::rmt::RxChannelCreator;
rmt.channel7.configure(rx, rx_config).unwrap()
};
} else {
let rx_channel = {
use esp_hal::rmt::RxChannelCreator;
rmt.channel2.configure(rx, rx_config).unwrap()
};
}
}
let mut tx_data = [PulseCode::new(true, 200, false, 50); 20];
tx_data[tx_data.len() - 2] = PulseCode::new(true, 3000, false, 500);
tx_data[tx_data.len() - 1] = PulseCode::empty();
let mut rcv_data: [u32; 20] = [PulseCode::empty(); 20];
let rx_transaction = rx_channel.receive(&mut rcv_data).unwrap();
let tx_transaction = tx_channel.transmit(&tx_data).unwrap();
rx_transaction.wait().unwrap();
tx_transaction.wait().unwrap();
// the last two pulse-codes are the ones which wait for the timeout so
// they can't be equal
assert_eq!(&tx_data[..18], &rcv_data[..18]);
}
#[test]
#[timeout(1)]
fn rmt_single_shot_fails_without_end_marker() {
let peripherals = esp_hal::init(esp_hal::Config::default());
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(peripherals.RMT, freq).unwrap();
let (_, tx) = hil_test::common_test_pins!(io);
let tx_config = TxChannelConfig {
clk_divider: 255,
..TxChannelConfig::default()
};
let tx_channel = {
use esp_hal::rmt::TxChannelCreator;
rmt.channel0.configure(tx, tx_config).unwrap()
};
let tx_data = [PulseCode::new(true, 200, false, 50); 20];
let tx_transaction = tx_channel.transmit(&tx_data);
assert!(tx_transaction.is_err());
assert!(matches!(tx_transaction, Err(Error::EndMarkerMissing)));
}
}