File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ Unreleased]
9
+
10
+ ## Fixed
11
+
12
+ - Fixed USB PLL's VCO frequency according to updated datasheet - #688 @ithinuel , @jannic
13
+
8
14
## [ 0.9.0]
9
15
10
16
### MSRV
Original file line number Diff line number Diff line change @@ -127,10 +127,10 @@ pub mod common_configs {
127
127
128
128
/// Default, nominal configuration for PLL_USB.
129
129
pub const PLL_USB_48MHZ : PLLConfig = PLLConfig {
130
- vco_freq : HertzU32 :: MHz ( 480 ) ,
130
+ vco_freq : HertzU32 :: MHz ( 1200 ) ,
131
131
refdiv : 1 ,
132
132
post_div1 : 5 ,
133
- post_div2 : 2 ,
133
+ post_div2 : 5 ,
134
134
} ;
135
135
}
136
136
You can’t perform that action at this time.
0 commit comments