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.
92 lines
1.7 KiB
C
92 lines
1.7 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
/*!
|
|
* \brief Data structure and functions for OTG
|
|
*/
|
|
|
|
|
|
#ifndef __OTG_H__
|
|
# define __OTG_H__
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
|
|
#include "otg_defs.h"
|
|
#include "otg_models.h"
|
|
#include "otg_config.h"
|
|
|
|
|
|
#if STANDALONE==1
|
|
#define LOG_G(c, x...) printf(x)
|
|
#define LOG_A(c, x...) printf(x)
|
|
#define LOG_C(c, x...) printf(x)
|
|
#define LOG_E(c, x...) printf(x)
|
|
#define LOG_W(c, x...) printf(x)
|
|
#define LOG_N(c, x...) printf(x)
|
|
#define LOG_I(c, x...) printf(x)
|
|
#define LOG_D(c, x...) printf(x)
|
|
#define LOG_F(c, x...) printf(x)
|
|
#define LOG_T(c, x...) printf(x)
|
|
typedef enum {MIN_NUM_COMPS=0, PHY, OMG, OCM, OTG, MAX_NUM_COMPS} comp_t;
|
|
#else
|
|
#include "common/utils/LOG/log.h"
|
|
#endif
|
|
|
|
|
|
/*! \fn void init_all_otg(void)
|
|
* \brief set initial values de 0
|
|
* \param[in] void
|
|
* \param[out] void
|
|
* \note
|
|
* @ingroup _otg
|
|
*/
|
|
void init_all_otg(int max_nb_frames);
|
|
|
|
/*! \fn void set_ctime(int ctime)
|
|
* \brief set the simulation time to the ctime
|
|
* \param[in] simulation time , void
|
|
* \param[out] void
|
|
* \note
|
|
* @ingroup _otg
|
|
*/
|
|
void set_ctime(int ctime);
|
|
|
|
|
|
/*! \fn void get_ctime(void)
|
|
* \brief get the simulation time
|
|
* \param[in] int
|
|
* \param[out] void
|
|
* \note
|
|
* @ingroup _otg
|
|
*/
|
|
int get_ctime(void);
|
|
|
|
|
|
|
|
/*! \fn void free_otg(void);
|
|
* \brief free OTG pointers
|
|
* \param[in]
|
|
* \param[out]
|
|
* \note
|
|
* @ingroup _otg
|
|
*/
|
|
void free_otg(void);
|
|
|
|
/*! \fn str_sub (const char *s, unsigned int start, unsigned int end);
|
|
* \brief substract string
|
|
* \param[in] const char *s
|
|
* \param[in] unsigned int start
|
|
* \param[in] unsigned int end
|
|
* \param[out]char *str_sub
|
|
* @ingroup _otg
|
|
*/
|
|
char *str_sub (const char *s, unsigned int start, unsigned int end);
|
|
|
|
|
|
#endif
|