mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
- all RAN code, CI code, configuration files, dockerfiles, in CSSL v1.0
- all deployment code (openshift, charts, ancillary files like shell
scripts), in MIT
- documentation in CC-BY-4.0
- exceptions might apply and are listed in NOTICE
- there is a new LICENSES folder with all licenses
- CONTRIBUTIONS.md has been updated accordingly
For automated changes based on OAI PL v1.1:
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.{c,h,cpp}
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.ts
perl -i~ -0pe 's/<!--.*Licensed to the OpenAirInterface.*openairinterface.org\n.*-->/<!-- SPDX-License-Identifier: LicenseRef-CSSL-1.0 -->/s' **/*.xml
The rest (cmake, files with missing license, cmake) manually.
45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
/***********************************************************************
|
|
*
|
|
* FILENAME : phy_frame_configuration_nr.h
|
|
*
|
|
* DESCRIPTION : functions related to FDD/TDD configuration for NR
|
|
* see TS 38.213 11.1 Slot configuration
|
|
* and TS 38.331 for RRC configuration
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "PHY/defs_gNB.h"
|
|
|
|
#ifndef PHY_FRAME_CONFIG_NR_H
|
|
#define PHY_FRAME_CONFIG_NR_H
|
|
|
|
/*************** FUNCTIONS *****************************************/
|
|
|
|
/** @brief This function processes TDD dedicated configuration for NR
|
|
* by processing the tdd_slot_bitmap and period_cfg, and
|
|
* allocates memory and fills max_num_of_symbol_per_slot_list
|
|
* in the nfapi config request (cfg)
|
|
* @param cfg NR config request structure pointer
|
|
* @param fs frame structure pointer
|
|
* @returns nb_periods_per_frame if TDD has been properly configurated
|
|
* -1 tdd configuration can not be done
|
|
*/
|
|
void set_tdd_config_nr(nfapi_nr_config_request_scf_t *cfg, frame_structure_t *fs);
|
|
|
|
/** \brief This function checks nr slot direction : downlink or uplink
|
|
* @param frame_parms NR DL Frame parameters
|
|
* @param nr_frame : frame number
|
|
* @param nr_slot : slot number
|
|
@returns int : downlink, uplink or mixed slot type*/
|
|
|
|
int nr_slot_select(const nfapi_nr_config_request_scf_t *cfg, int nr_frame, int nr_slot);
|
|
|
|
void do_tdd_config_sim(PHY_VARS_gNB *gNB, int mu);
|
|
|
|
#endif /* PHY_FRAME_CONFIG_NR_H */
|
|
|