Commit 8d7dbe0c authored by John Robert Gill's avatar John Robert Gill

Incremented version and removed spurious warning.

parent 6ac9888a
......@@ -227,7 +227,7 @@ unsigned libwr2rf_read_fwversion(struct libwr2rf_dev *dev)
int libwr2rf_check_fwversion(struct libwr2rf_dev *dev)
{
return !(libwr2rf_read_fwversion(dev) == 0x00000500);
return !(libwr2rf_read_fwversion(dev) == 0x00000600);
}
void libwr2rf_read_nco_ipinfo(struct libwr2rf_dev *dev,
......
......@@ -279,11 +279,6 @@ int libwr2rf_dac_port_timing(struct libwr2rf_dev *dev, unsigned ch)
} else {
printf ("dac %u: best sampling: %u\n", ch, best);
if (ch == 1 && (best > 22 || best < 20))
printf("WARNING: Unexpected range for ch1, normally 20, 21 or 22\n");
if (ch == 2 && (best > 24 || best < 23))
printf("WARNING: Unexpected range for ch2, normally 23 or 24\n");
libwr2rf_dac_set_timing_delay(dev, ch, best);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment