diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-10-05 11:29:08 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-05 11:29:08 +0000 |
| commit | b59143a4ab62bb2fd319e812102ce9d01f6a0a52 (patch) | |
| tree | b15679c55d96f3241b70bdd71bae2848ee2da501 | |
| parent | 7c3562cee6b05320f617f0e1f407445e433e2dab (diff) | |
| parent | b73b3f2da0940907dfc39bec62ff33c976874017 (diff) | |
Merge pull request #3391 from shilga/features/rp235x_clock
rp: Run RP235x at 150 MHz instead of 125
| -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 { |
