Correctly calculate target VCO frequency from multipliers

This commit is contained in:
David Purser 2023-07-07 20:52:44 -05:00 committed by GitHub
parent b0da6318f3
commit 69b4e898b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -740,7 +740,7 @@ mod pll {
}
};
let vco_ck = output + pll_x_p;
let vco_ck = output * pll_x_p;
assert!(pll_x_p < 128);
assert!(vco_ck >= VCO_MIN);