mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-22 06:04:00 +08:00
* init gps test * gps test v1 * add static signal gen script * update readme * remove LD_PRELOAD by using rpath, update values after testing * remove LD_PRELOAD * update fuzzy testing * address comments * cleanup Co-authored-by: Kurt Nistelberger <kurt.nistelberger@gmail.com>
14 lines
455 B
Diff
14 lines
455 B
Diff
diff --git a/src/FPGA_common/FPGA_common.cpp b/src/FPGA_common/FPGA_common.cpp
|
|
index 4e81f33e..7381c475 100644
|
|
--- a/src/FPGA_common/FPGA_common.cpp
|
|
+++ b/src/FPGA_common/FPGA_common.cpp
|
|
@@ -946,7 +946,7 @@ double FPGA::DetectRefClk(double fx3Clk)
|
|
|
|
if (i == 0)
|
|
return -1;
|
|
- lime::info("Reference clock %1.2f MHz", clkTbl[i - 1] / 1e6);
|
|
+ //lime::info("Reference clock %1.2f MHz", clkTbl[i - 1] / 1e6);
|
|
return clkTbl[i - 1];
|
|
}
|
|
|