diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-12-17 15:22:02 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-12-17 15:22:02 +0100 |
commit | 7d8337a138fef3417b9f41cc6635c9562f4d9b4a (patch) | |
tree | 0045bbb70cc8a7a2c727862318340cab261e1d80 | |
parent | 9f54ad6b15428875dc7e1e81920e86eba72d9ec5 (diff) | |
download | icestorm-7d8337a138fef3417b9f41cc6635c9562f4d9b4a.tar.gz icestorm-7d8337a138fef3417b9f41cc6635c9562f4d9b4a.tar.bz2 icestorm-7d8337a138fef3417b9f41cc6635c9562f4d9b4a.zip |
Fixed icepll divf range
-rw-r--r-- | icepll/icepll.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icepll/icepll.cc b/icepll/icepll.cc index a832b8c..fa06d0a 100644 --- a/icepll/icepll.cc +++ b/icepll/icepll.cc @@ -98,7 +98,7 @@ int main(int argc, char **argv) double f_pfd = f_pllin / (divr + 1); if (f_pfd < 10 || f_pfd > 133) continue; - for (int divf = 0; divf <= 127; divf++) + for (int divf = 0; divf <= 63; divf++) { if (simple_feedback) { |