Commit 46da1cd4 authored by Omar Gabella's avatar Omar Gabella

Calibration of fixed delays during WRLS skipped and fixed to '0' value

parent 9a448f44
......@@ -29,7 +29,12 @@ int wrpc_read_calibration_data(struct pp_instance *ppi,
if (clock_period)
*clock_period = state.clock_period;
#ifdef BROADCAST_BASE
/* CLB_Base Fixed delays calibration has been removed from the WRLS. */
*deltaTx = 0;
*deltaRx = 0;
#else
/* check if tx is calibrated,
* if so read data */
if (state.calib.tx_calibrated) {
......@@ -51,6 +56,7 @@ int wrpc_read_calibration_data(struct pp_instance *ppi,
return WR_HW_CALIB_NOT_FOUND;
return WR_HW_CALIB_OK;
#endif // BROADCAST_BASE
}
......
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