Searched refs:CO (Results 1 – 2 of 2) sorted by relevance
255 delta_f = last_delta_f_ - dT*(CO - CObias); in pushDisciplineEvent()261 CO += dCO * Tf; // Filter CO by applying gain <1 here. in pushDisciplineEvent()267 if (CO < COmin) in pushDisciplineEvent()268 CO = COmin; in pushDisciplineEvent()269 else if (CO > COmax) in pushDisciplineEvent()270 CO = COmax; in pushDisciplineEvent()273 CObias = bias_Alpha * CO + (1.0f - bias_Alpha) * lastCObias; in pushDisciplineEvent()278 tgt_correction = CO * 327.66; in pushDisciplineEvent()284 LOG_TS("clock_loop %" PRId64 " %f %f %f %d\n", raw_delta, delta_f, CO, CObias, tgt_correction); in pushDisciplineEvent()319 CO = 0.0f; in reset_l()[all …]
121 float CO; variable