diff --git a/rp2040-hal/CHANGELOG.md b/rp2040-hal/CHANGELOG.md index 77a1da894..b36339468 100644 --- a/rp2040-hal/CHANGELOG.md +++ b/rp2040-hal/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +## Fixed + +- Fixed USB PLL's VCO frequency according to updated datasheet - #688 @ithinuel, @jannic + ## [0.9.0] ### MSRV diff --git a/rp2040-hal/src/pll.rs b/rp2040-hal/src/pll.rs index aae025d4d..8a5915ff2 100644 --- a/rp2040-hal/src/pll.rs +++ b/rp2040-hal/src/pll.rs @@ -127,10 +127,10 @@ pub mod common_configs { /// Default, nominal configuration for PLL_USB. pub const PLL_USB_48MHZ: PLLConfig = PLLConfig { - vco_freq: HertzU32::MHz(480), + vco_freq: HertzU32::MHz(1200), refdiv: 1, post_div1: 5, - post_div2: 2, + post_div2: 5, }; }