Remove PLL postdiv assert. Fixes #1047 (#1189)

This commit is contained in:
Liam Fraser 2023-01-24 15:10:05 +00:00 committed by GitHub
parent 177b0303dd
commit c578422528
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,9 +29,7 @@ void pll_init(PLL pll, uint refdiv, uint vco_freq, uint post_div1, uint post_div
// post_div1 should be >= post_div2 // post_div1 should be >= post_div2
// from appnote page 11 // from appnote page 11
// postdiv1 is designed to operate with a higher input frequency // postdiv1 is designed to operate with a higher input frequency than postdiv2
// than postdiv2
assert(post_div2 <= post_div1);
// Check that reference frequency is no greater than vco / 16 // Check that reference frequency is no greater than vco / 16
assert(ref_mhz <= (vco_freq / 16)); assert(ref_mhz <= (vco_freq / 16));