Skip to content

Commit

Permalink
test(rs): set assumed sim freq = 100 MHz
Browse files Browse the repository at this point in the history
  • Loading branch information
hegza committed Jan 31, 2025
1 parent 1b44a6d commit 07a6b04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/atalanta_bsp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ impl Peripherals {

pub const CPU_FREQ: u32 = match () {
#[cfg(feature = "rtl-tb")]
() => 50_000_000,
() => 100_000_000,
#[cfg(not(feature = "rtl-tb"))]
() => 30_000_000,
};
Expand Down
2 changes: 1 addition & 1 deletion examples/rust_minimal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use core::ptr;

pub const CPU_FREQ: u32 = match () {
#[cfg(feature = "rtl-tb")]
() => 50_000_000,
() => 100_000_000,
#[cfg(not(feature = "rtl-tb"))]
() => 30_000_000,
};
Expand Down

0 comments on commit 07a6b04

Please sign in to comment.