We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea1e6f commit 26ff9cfCopy full SHA for 26ff9cf
common/airspy_core.c
@@ -507,7 +507,7 @@ void sys_clock_init(void)
507
if(airspy_calib.header == AIRSPY_FLASH_CALIB_HEADER)
508
{
509
const int invppb = 1000000000;
510
- airspy_conf->r820t_conf_rw.xtal_freq -= ((int64_t)airspy_conf->r820t_conf_rw.xtal_freq * (int64_t)airspy_calib.correction_ppb + invppb / 2) / invppb;
+ airspy_conf->r820t_conf_rw.xtal_freq += ((int64_t)airspy_conf->r820t_conf_rw.xtal_freq * (int64_t)airspy_calib.correction_ppb + invppb / 2) / invppb;
511
}
512
513
0 commit comments