Skip to content

Commit

Permalink
tests: parl_io: h2 PCNT does not like 20MHz
Browse files Browse the repository at this point in the history
  • Loading branch information
liebman committed Sep 22, 2024
1 parent 5c9de25 commit 1869bd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions hil-test/tests/parl_io_tx.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! PARL_IO TX test
//% CHIPS: esp32c6 esp32h2

#![no_std]
#![no_main]

Expand Down Expand Up @@ -95,7 +94,7 @@ mod tests {
ctx.parl_io,
ctx.dma_channel.configure(false, DmaPriority::Priority0),
tx_descriptors,
20.MHz(),
10.MHz(),
)
.unwrap();

Expand Down Expand Up @@ -162,7 +161,7 @@ mod tests {
ctx.parl_io,
ctx.dma_channel.configure(false, DmaPriority::Priority0),
tx_descriptors,
20.MHz(),
10.MHz(),
)
.unwrap();

Expand Down
4 changes: 2 additions & 2 deletions hil-test/tests/parl_io_tx_async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ mod tests {
ctx.dma_channel
.configure_for_async(false, DmaPriority::Priority0),
tx_descriptors,
20.MHz(),
10.MHz(),
)
.unwrap();

Expand Down Expand Up @@ -164,7 +164,7 @@ mod tests {
ctx.dma_channel
.configure_for_async(false, DmaPriority::Priority0),
tx_descriptors,
20.MHz(),
10.MHz(),
)
.unwrap();

Expand Down

0 comments on commit 1869bd6

Please sign in to comment.