Skip to content
Snippets Groups Projects
Commit d163cfa1 authored by Omar Gabella's avatar Omar Gabella
Browse files

Add bitslide to wr_servo_state and refresh at each downlink offset calculation

parent b7ab94bc
Branches omarg_bc_t1t2
No related merge requests found
......@@ -81,45 +81,45 @@ struct wr_dsport {
UInteger32 ctr_wr_s_lock_6;
UInteger32 ctr_wr_s_lock_7;
UInteger32 ctr_wr_locked_1;
UInteger32 ctr_wr_locked_2;
UInteger32 ctr_wr_resp_calib_req_1;
UInteger32 ctr_wr_resp_calib_req_2;
UInteger32 ctr_wr_calibration_00;
UInteger32 ctr_wr_calibration_0;
UInteger32 ctr_wr_calibration_1;
UInteger32 ctr_wr_calibration_2;
UInteger32 ctr_wr_calibration_3;
UInteger32 ctr_wr_calibration_4;
UInteger32 ctr_wr_calibration_5;
UInteger32 ctr_wr_calibration_6;
UInteger32 ctr_wr_calibration_7;
UInteger32 ctr_wr_calibration_8;
UInteger32 ctr_wr_locked_1;
UInteger32 ctr_wr_locked_2;
UInteger32 ctr_wr_resp_calib_req_1;
UInteger32 ctr_wr_resp_calib_req_2;
UInteger32 ctr_wr_calibration_00;
UInteger32 ctr_wr_calibration_0;
UInteger32 ctr_wr_calibration_1;
UInteger32 ctr_wr_calibration_2;
UInteger32 ctr_wr_calibration_3;
UInteger32 ctr_wr_calibration_4;
UInteger32 ctr_wr_calibration_5;
UInteger32 ctr_wr_calibration_6;
UInteger32 ctr_wr_calibration_7;
UInteger32 ctr_wr_calibration_8;
UInteger32 ctr_wr_calibrated_1;
UInteger32 ctr_wr_calibrated_2;
UInteger32 ctr_wr_calibrated_2;
UInteger32 ctr_wr_link_on_1;
UInteger32 ctr_wr_link_on_2;
UInteger32 ctr_wr_link_on_2;
UInteger32 ctr_wr_sync_tai;
UInteger32 ctr_wr_sync_nsec;
UInteger32 ctr_wr_sync_phase;
UInteger32 ctr_wr_wait_offset_stable_0;
UInteger32 ctr_wr_wait_offset_stable_1;
UInteger32 ctr_wr_wait_offset_stable_2;
UInteger32 ctr_wr_wait_offset_stable_3;
UInteger32 ctr_wr_track_phase;
UInteger32 ctr_pps_gen_busy;
UInteger32 ctr_spll_shifter_busy;
UInteger32 ctr_not_busy;
UInteger32 ctr_wr_servo_init_0;
UInteger32 ctr_wr_servo_init_1;
UInteger32 servo_flags_at_init;
UInteger32 ctr_wr_sync_nsec;
UInteger32 ctr_wr_sync_phase;
UInteger32 ctr_wr_wait_offset_stable_0;
UInteger32 ctr_wr_wait_offset_stable_1;
UInteger32 ctr_wr_wait_offset_stable_2;
UInteger32 ctr_wr_wait_offset_stable_3;
UInteger32 ctr_wr_track_phase;
UInteger32 ctr_pps_gen_busy;
UInteger32 ctr_spll_shifter_busy;
UInteger32 ctr_not_busy;
UInteger32 ctr_wr_servo_init_0;
UInteger32 ctr_wr_servo_init_1;
UInteger32 servo_flags_at_init;
*/
//#endif // BROADCAST_BASE && BC_EXTRA_MON
};
......@@ -247,6 +247,9 @@ struct wr_servo_state {
char servo_state_name[32];
int64_t skew;
int64_t offset;
#ifdef BROADCAST_NODE
int64_t bitslide;
#endif // BROADCAST_NODE
/* Values used by snmp. Values are increased at servo update when
* erroneous condition occurs. */
......
......@@ -537,6 +537,8 @@ int wr_e2e_offset_downlink(struct pp_instance *ppi,
s->tracking_enabled = tracking_enabled;
s->delta_ms = delay_ms_fix;
s->bitslide = ep_get_bitslide(); // DEBUGGING
return 1;
}
......
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