Commit 38ce8f7b authored by Florian Kaltenberger's avatar Florian Kaltenberger

bugfix

parent 54180d34
......@@ -848,9 +848,9 @@ static void positioning_measurement_response(const f1ap_measurement_resp_t *resp
f1ap_measured_results_value_t *MeasResVal= &posMeasRes->pos_measurement_result_item->measuredResultsValue;
MeasResVal->present = f1ap_measured_results_value_pr_ul_rtoa;
MeasResVal->choice.uL_RTOA.uL_RTOA_MeasurementItem.present = f1ap_ulrtoameas_pr_k1;
if (mac->meas_pos_info.toa_ns >=0)
if (mac->meas_pos_info.toa_ns[0] >=0)
MeasResVal->choice.uL_RTOA.uL_RTOA_MeasurementItem.choice.k1 =
(int32_t)(((int64_t)mac->meas_pos_info.toa_ns * (int64_t)T_inv) / T_ns_inv);
(int32_t)(((int64_t)mac->meas_pos_info.toa_ns[0] * (int64_t)T_inv) / T_ns_inv);
else
MeasResVal->choice.uL_RTOA.uL_RTOA_MeasurementItem.choice.k1 = 0;
LOG_I(MAC,
......
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