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
promise
OpenXG-RAN
Commits
55e8acd2
Commit
55e8acd2
authored
Dec 18, 2020
by
magounak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix conflicts
parent
70367795
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
13 deletions
+11
-13
openair1/PHY/INIT/lte_init_ru.c
openair1/PHY/INIT/lte_init_ru.c
+0
-4
openair1/PHY/defs_RU.h
openair1/PHY/defs_RU.h
+2
-0
openair1/SCHED/ru_procedures.c
openair1/SCHED/ru_procedures.c
+1
-1
targets/RT/USER/lte-ru.c
targets/RT/USER/lte-ru.c
+5
-5
targets/RT/USER/ru_control.c
targets/RT/USER/ru_control.c
+3
-3
No files found.
openair1/PHY/INIT/lte_init_ru.c
View file @
55e8acd2
...
...
@@ -63,7 +63,6 @@ int phy_init_RU(RU_t *ru) {
for
(
i
=
0
;
i
<
ru
->
nb_rx
;
i
++
)
{
calibration
->
drs_ch_estimates_time
[
i
]
=
(
int32_t
*
)
malloc16_clear
(
2
*
sizeof
(
int32_t
)
*
fp
->
ofdm_symbol_size
);
}
}
for
(
i
=
0
;
i
<
ru
->
nb_rx
;
i
++
)
{
ru
->
common
.
rxdata
[
i
]
=
(
int32_t
*
)
malloc16_clear
(
fp
->
samples_per_tti
*
10
*
sizeof
(
int32_t
)
);
...
...
@@ -217,9 +216,6 @@ void phy_free_RU(RU_t *ru) {
free_and_zero
(
calibration
->
rxdataF_ext
);
free_and_zero
(
calibration
->
drs_ch_estimates
);
}
free_and_zero
(
calibration
->
rxdataF_ext
);
free_and_zero
(
calibration
->
drs_ch_estimates
);
for
(
i
=
0
;
i
<
ru
->
nb_rx
;
i
++
)
{
free_and_zero
(
ru
->
prach_rxsigF
[
0
][
i
]);
...
...
openair1/PHY/defs_RU.h
View file @
55e8acd2
...
...
@@ -470,6 +470,8 @@ typedef struct RU_t_s {
int
wait_cnt
;
/// counter to delay start of slave RUs until stable synchronization
int
wait_check
;
/// counter to count missed synch events during synchronization of RU
int
missed_synch_events
;
/// Total gain of receive chain
uint32_t
rx_total_gain_dB
;
/// number of bands that this device can support
...
...
openair1/SCHED/ru_procedures.c
View file @
55e8acd2
...
...
@@ -731,7 +731,7 @@ void ru_fep_full_2thread(RU_t *ru,
0
,
0
);
T
(
T_CALIBRATION_CHANNEL_ESTIMATES
,
T_INT
(
ru
->
idx
),
T_INT
(
proc
->
frame_rx
),
T_INT
(
proc
->
subframe
_rx
),
T
(
T_CALIBRATION_CHANNEL_ESTIMATES
,
T_INT
(
ru
->
idx
),
T_INT
(
proc
->
frame_rx
),
T_INT
(
proc
->
tti
_rx
),
T_INT
(
l
),
T_BUFFER
(
&
calibration
->
drs_ch_estimates
[
0
][
l
*
12
*
fp
->
N_RB_UL
],
12
*
fp
->
N_RB_UL
*
sizeof
(
int32_t
)));
}
...
...
targets/RT/USER/lte-ru.c
View file @
55e8acd2
...
...
@@ -325,7 +325,7 @@ void fh_if4p5_south_in(RU_t *ru,
Ns
=
(
ru
->
is_slave
==
0
?
1
:
1
);
l
=
(
ru
->
is_slave
==
0
?
10
:
10
);
u
=
(
ru
->
is_slave
==
0
?
0
:
0
);
ru
->
frame_parms
.
nb_antennas_rx
=
ru
->
nb_rx
;
ru
->
frame_parms
->
nb_antennas_rx
=
ru
->
nb_rx
;
ulsch_extract_rbs_single
(
ru
->
common
.
rxdataF
,
calibration
->
rxdataF_ext
,
0
,
...
...
@@ -919,7 +919,7 @@ void tx_rf(RU_t *ru,
siglen
+
sf_extension
,
ru
->
nb_tx
,
flags
);
if
(
ru
->
state
==
RU_RUN
&&
proc
->
frame_tx
%
ru
->
p
==
ru
->
tag
&&
proc
->
subframe
_tx
==
1
)
{
if
(
ru
->
state
==
RU_RUN
&&
proc
->
frame_tx
%
ru
->
p
==
ru
->
tag
&&
proc
->
tti
_tx
==
1
)
{
txs1
=
ru
->
rfdevice
.
trx_write_func
(
&
ru
->
rfdevice
,
proc
->
timestamp_tx
+
(
ru
->
ts_offset
+
sigoff2
)
-
ru
->
openair0_cfg
.
tx_sample_advance
-
sf_extension
,
txp1
,
...
...
@@ -929,7 +929,7 @@ void tx_rf(RU_t *ru,
//LOG_M("txdata.m","txdata",&ru->common.txdata[0][0], fp->samples_per_tti*10,1,1); // save 1 frame
//exit(-1);
int
se1
=
dB_fixed
(
signal_energy
(
txp1
[
0
],
siglen2
+
sf_extension
));
LOG_D
(
PHY
,
"******** frame %d subframe %d RRU sends DMRS of energy10 %d, energy3 %d
\n
"
,
proc
->
frame_tx
,
proc
->
subframe
_tx
,
se1
,
dB_fixed
(
signal_energy
(
txp
[
0
],
siglen
+
sf_extension
)));
LOG_D
(
PHY
,
"******** frame %d subframe %d RRU sends DMRS of energy10 %d, energy3 %d
\n
"
,
proc
->
frame_tx
,
proc
->
tti
_tx
,
se1
,
dB_fixed
(
signal_energy
(
txp
[
0
],
siglen
+
sf_extension
)));
LOG_D
(
PHY
,
"txs1 %d, siglen2 %d, sf_extension %d
\n
"
,
txs1
,
siglen2
,
sf_extension
);
}
...
...
@@ -942,7 +942,7 @@ void tx_rf(RU_t *ru,
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_TRX_WRITE
,
0
);
if
(
ru
->
state
==
RU_RUN
&&
proc
->
frame_tx
%
ru
->
p
==
ru
->
tag
&&
proc
->
subframe
_tx
==
1
)
{
if
(
ru
->
state
==
RU_RUN
&&
proc
->
frame_tx
%
ru
->
p
==
ru
->
tag
&&
proc
->
tti
_tx
==
1
)
{
if
(
(
txs1
!=
siglen2
+
sf_extension
)
&&
(
late_control
==
STATE_BURST_NORMAL
)
){
/* add fail safe for late command */
late_control
=
STATE_BURST_TERMINATE
;
LOG_E
(
PHY
,
"TX : Timeout (sent %d/%d) state =%d
\n
"
,
txs1
,
siglen2
,
late_control
);
...
...
@@ -2787,7 +2787,7 @@ void init_RU(char *rf_config_file, int send_dmrssync) {
ru
->
south_out_cnt
=
0
;
// use eNB_list[0] as a reference for RU frame parameters
// NOTE: multiple CC_id are not handled here yet!
if
(
ru
->
ota_sync_enable
==
1
)
)
{
if
(
ru
->
ota_sync_enable
==
1
){
ru
->
generate_dmrs_sync
=
1
;
generate_ul_ref_sigs
();
}
...
...
targets/RT/USER/ru_control.c
View file @
55e8acd2
...
...
@@ -424,9 +424,9 @@ void configure_ru(int idx,
config
->
tdd_config_S
[
0
]
=
ru
->
frame_parms
->
tdd_config_S
;
config
->
att_tx
[
0
]
=
ru
->
att_tx
;
config
->
att_rx
[
0
]
=
ru
->
att_rx
;
config
->
N_RB_DL
[
0
]
=
ru
->
frame_parms
.
N_RB_DL
;
config
->
N_RB_UL
[
0
]
=
ru
->
frame_parms
.
N_RB_UL
;
config
->
threequarter_fs
[
0
]
=
ru
->
frame_parms
.
threequarter_fs
;
config
->
N_RB_DL
[
0
]
=
ru
->
frame_parms
->
N_RB_DL
;
config
->
N_RB_UL
[
0
]
=
ru
->
frame_parms
->
N_RB_UL
;
config
->
threequarter_fs
[
0
]
=
ru
->
frame_parms
->
threequarter_fs
;
config
->
tag
=
idx
;
config
->
p
=
RC
.
nb_RU
;
if
(
ru
->
if_south
==
REMOTE_IF4p5
)
{
...
...
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