Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
spbro
OpenXG-RAN
Commits
9eed7db8
Commit
9eed7db8
authored
Aug 30, 2022
by
Sagar Parsawar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimizing PRS buffers, added freeing up in nrUE
parent
73ca6daa
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
247 additions
and
208 deletions
+247
-208
executables/nr-ue.c
executables/nr-ue.c
+0
-168
executables/nr-uesoftmodem.h
executables/nr-uesoftmodem.h
+0
-2
openair1/PHY/INIT/nr_init_ue.c
openair1/PHY/INIT/nr_init_ue.c
+215
-0
openair1/PHY/INIT/phy_init.h
openair1/PHY/INIT/phy_init.h
+3
-0
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
+27
-33
openair1/PHY/defs_nr_UE.h
openair1/PHY/defs_nr_UE.h
+2
-5
No files found.
executables/nr-ue.c
View file @
9eed7db8
This diff is collapsed.
Click to expand it.
executables/nr-uesoftmodem.h
View file @
9eed7db8
...
...
@@ -100,6 +100,4 @@ extern void start_oai_nrue_threads(void);
void
*
UE_thread
(
void
*
arg
);
void
init_nr_ue_vars
(
PHY_VARS_NR_UE
*
ue
,
uint8_t
UE_id
,
uint8_t
abstraction_flag
);
void
init_nrUE_standalone_thread
(
int
ue_idx
);
void
RCconfig_nrUE_prs
(
void
*
cfg
);
void
init_nr_prs_ue_vars
(
PHY_VARS_NR_UE
*
ue
);
#endif
openair1/PHY/INIT/nr_init_ue.c
View file @
9eed7db8
This diff is collapsed.
Click to expand it.
openair1/PHY/INIT/phy_init.h
View file @
9eed7db8
...
...
@@ -416,6 +416,9 @@ void fill_subframe_mask(PHY_VARS_eNB *eNB);
void
init_DLSCH_struct
(
PHY_VARS_gNB
*
gNB
,
processingData_L1tx_t
*
msg
);
void
reset_DLSCH_struct
(
const
PHY_VARS_gNB
*
gNB
,
processingData_L1tx_t
*
msg
);
void
RCconfig_nrUE_prs
(
void
*
cfg
);
void
init_nr_prs_ue_vars
(
PHY_VARS_NR_UE
*
ue
);
/** @} */
#endif
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
View file @
9eed7db8
This diff is collapsed.
Click to expand it.
openair1/PHY/defs_nr_UE.h
View file @
9eed7db8
...
...
@@ -349,8 +349,6 @@ typedef struct {
#define NR_PRS_IDFT_OVERSAMP_FACTOR 1 // IDFT oversampling factor for NR PRS channel estimates in time domain, ALLOWED value 16x, and 1x is default(ie. IDFT size is frame_params->ofdm_symbol_size)
typedef
struct
{
prs_config_t
prs_cfg
;
int32_t
**
prs_ch_estimates
;
int32_t
**
prs_ch_estimates_time
;
int32_t
reserved
;
prs_meas_t
**
prs_meas
;
}
NR_PRS_RESOURCE_t
;
...
...
@@ -358,10 +356,9 @@ typedef struct {
typedef
struct
{
uint8_t
NumPRSResources
;
NR_PRS_RESOURCE_t
prs_resource
[
NR_MAX_PRS_RESOURCES_PER_SET
];
//temp buffers
int16_t
*
ch_tmp
;
int
16_t
*
chF_interpol
;
int
16_t
*
chT_interpol
;
int
32_t
*
*
chF_interpol
;
int
32_t
*
*
chT_interpol
;
}
NR_UE_PRS
;
#define NR_PDCCH_DEFS_NR_UE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment