Merge pull request #400 from Xiretza/ecp5-pll-freqfix

Fix ECP5PLL VCO frequency range
This commit is contained in:
enjoy-digital 2020-02-24 14:49:35 +01:00 committed by GitHub
commit 9521f2ff80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ class ECP5PLL(Module):
clko_div_range = (1, 128+1)
clki_freq_range = ( 8e6, 400e6)
clko_freq_range = (3.125e6, 400e6)
vco_freq_range = ( 550e6, 1250e6)
vco_freq_range = ( 400e6, 800e6)
def __init__(self):
self.reset = Signal()