diff options
| author | Sebastian Quilitz <[email protected]> | 2024-10-05 12:18:33 +0200 |
|---|---|---|
| committer | Sebastian Quilitz <[email protected]> | 2024-10-05 12:18:33 +0200 |
| commit | b73b3f2da0940907dfc39bec62ff33c976874017 (patch) | |
| tree | 4752fc7b536cd62458cda49c47915e1c931253e9 /embassy-rp | |
| parent | 6e0b08291b63a0da8eba9284869d1d046bc5dabb (diff) | |
rp: Run RP235x at 150 MHz instead of 125
Diffstat (limited to 'embassy-rp')
| -rw-r--r-- | embassy-rp/src/clocks.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-rp/src/clocks.rs b/embassy-rp/src/clocks.rs index f229a5acd..e82beb0f1 100644 --- a/embassy-rp/src/clocks.rs +++ b/embassy-rp/src/clocks.rs | |||
| @@ -109,7 +109,10 @@ impl ClockConfig { | |||
| 109 | sys_pll: Some(PllConfig { | 109 | sys_pll: Some(PllConfig { |
| 110 | refdiv: 1, | 110 | refdiv: 1, |
| 111 | fbdiv: 125, | 111 | fbdiv: 125, |
| 112 | #[cfg(feature = "rp2040")] | ||
| 112 | post_div1: 6, | 113 | post_div1: 6, |
| 114 | #[cfg(feature = "_rp235x")] | ||
| 115 | post_div1: 5, | ||
| 113 | post_div2: 2, | 116 | post_div2: 2, |
| 114 | }), | 117 | }), |
| 115 | usb_pll: Some(PllConfig { | 118 | usb_pll: Some(PllConfig { |
