esp-hal/hil-test/tests/rmt.rs
Dániel Buga 848029b152
Test all feature sets (#2901)
* Mark interconnect as unstable

* Explicitly set unstable feature in HIL tests

* WIP append feature set name to artifact

* Add name to feature sets, build all combinations

* Fix tests

* Provide a looping executor for stable async tests

* Fix usb serial jtag

* Hide interconnect types
2025-01-09 13:58:14 +00:00

133 lines
3.8 KiB
Rust

//! RMT Loopback Test
//% CHIPS: esp32 esp32c3 esp32c6 esp32h2 esp32s2 esp32s3
//% FEATURES: unstable
#![no_std]
#![no_main]
use esp_hal::{
rmt::{PulseCode, Rmt, RxChannel, RxChannelConfig, TxChannel, TxChannelConfig},
time::RateExtU32,
};
use hil_test as _;
#[cfg(test)]
#[embedded_test::tests(default_timeout = 1)]
mod tests {
use esp_hal::rmt::Error;
use super::*;
#[init]
fn init() {}
#[test]
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]
fn rmt_single_shot_fails_without_end_marker() {
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 (_, 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 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)));
}
}