mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
TRS resources if configured by gnb, is present in two consequtive slots and two symbols per slot. LS estimates from the first symbol is saved and in second symbol frequency offset and time offset is estimated. The estimated FO is saved in UE global structure which is used in the last TRS slot. If the FO is above a threshold, the radio's center frequency is adjusted. Time offset is estimated but not used because time is already tracked using PBCH DMRS. Signed-off-by: Sakthivel Velumani <s.velumani@northeastern.edu>
75 lines
1.7 KiB
C
75 lines
1.7 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
/*!\file openair1/SIMULATION/NR_PHY/nr_unitary_common.c
|
|
* \brief common functions to NR PHY unitary tests
|
|
* \company EURECOM
|
|
*/
|
|
#include "nfapi/oai_integration/vendor_ext.h"
|
|
#include "nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h"
|
|
#include "openair2/NR_PHY_INTERFACE/NR_IF_Module.h"
|
|
#include "openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.h"
|
|
#include "openair1/PHY/defs_nr_UE.h"
|
|
#include "position_interface.h"
|
|
|
|
// Define signal handler to attempt graceful termination
|
|
bool stop = false;
|
|
|
|
void sigint_handler(int arg)
|
|
{
|
|
static const char msg[] = "\nCaught SIGINT, shutting down\nPress again CTRL+C to force shutdown\n";
|
|
__attribute__((unused)) int unused = write(STDOUT_FILENO, msg, sizeof(msg) - 1);
|
|
UNUSED(arg);
|
|
stop = true;
|
|
}
|
|
|
|
int oai_nfapi_nr_crc_indication(nfapi_nr_crc_indication_t *ind)
|
|
{
|
|
UNUSED(ind);
|
|
return (0);
|
|
}
|
|
int oai_nfapi_nr_srs_indication(nfapi_nr_srs_indication_t *ind)
|
|
{
|
|
UNUSED(ind);
|
|
return (0);
|
|
}
|
|
int oai_nfapi_nr_uci_indication(nfapi_nr_uci_indication_t *ind)
|
|
{
|
|
UNUSED(ind);
|
|
return (0);
|
|
}
|
|
int oai_nfapi_nr_rach_indication(nfapi_nr_rach_indication_t *ind)
|
|
{
|
|
UNUSED(ind);
|
|
return (0);
|
|
}
|
|
int oai_nfapi_nr_rx_data_indication(nfapi_nr_rx_data_indication_t *ind)
|
|
{
|
|
UNUSED(ind);
|
|
return 0;
|
|
}
|
|
|
|
void handle_nr_slot_ind(uint16_t sfn, uint16_t slot)
|
|
{
|
|
UNUSED(sfn);
|
|
UNUSED(slot);
|
|
}
|
|
|
|
void configure_nr_nfapi_pnf(char *vnf_ip_addr, int vnf_p5_port, char *pnf_ip_addr, int pnf_p7_port, int vnf_p7_port)
|
|
{
|
|
UNUSED(vnf_ip_addr);
|
|
UNUSED(vnf_p5_port);
|
|
UNUSED(pnf_ip_addr);
|
|
UNUSED(pnf_p7_port);
|
|
UNUSED(vnf_p7_port);
|
|
}
|
|
void configure_nr_nfapi_vnf(eth_params_t params)
|
|
{
|
|
UNUSED(params);
|
|
}
|
|
|
|
void trs_freq_correction(PHY_VARS_NR_UE *ue, int cfo)
|
|
{
|
|
}
|