mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-23 15:22:28 +00:00
Fix wrong unit
This commit is contained in:
parent
46f9115169
commit
4d75c4ee51
@ -779,7 +779,7 @@ fn init_pll(num: usize, config: Option<Pll>, input: &PllInput) -> PllOutput {
|
||||
..=3_999_999 => Pllrge::RANGE2,
|
||||
..=7_999_999 => Pllrge::RANGE4,
|
||||
..=16_000_000 => Pllrge::RANGE8,
|
||||
x => panic!("pll ref_clk out of range: {} mhz", x),
|
||||
x => panic!("pll ref_clk out of range: {} hz", x),
|
||||
};
|
||||
|
||||
// The smaller range (150 to 420 MHz) must
|
||||
|
Loading…
Reference in New Issue
Block a user