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
wangjie
OpenXG-RAN
Commits
b408fcb0
Commit
b408fcb0
authored
Oct 30, 2020
by
Sakthivel Velumani
Committed by
Raymond Knopp
Oct 30, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added toggling NDI from matlab
parent
685483eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
4 deletions
+20
-4
executables/nr-gnb.c
executables/nr-gnb.c
+14
-3
openair1/SCHED_NR/nr_ru_procedures.c
openair1/SCHED_NR/nr_ru_procedures.c
+6
-1
No files found.
executables/nr-gnb.c
View file @
b408fcb0
...
...
@@ -960,17 +960,28 @@ void init_eNB_afterRU(void) {
LOG_I
(
PHY
,
"RC.nb_nr_CC[inst:%d]:%p
\n
"
,
inst
,
RC
.
gNB
[
inst
]);
gNB
=
RC
.
gNB
[
inst
];
phy_init_nr_gNB
(
gNB
,
0
,
0
);
FILE
*
matlab_gen_file
=
fopen
(
"/home/
sakthi/pdsch_mcs28_dci46
_matlab.dat"
,
"r"
);
FILE
*
matlab_gen_file
=
fopen
(
"/home/
eurecom/sakthi/pdsch_mcs28_dci_manual
_matlab.dat"
,
"r"
);
if
(
matlab_gen_file
==
NULL
)
{
printf
(
"problem opening file
\n
"
);
exit
(
-
1
);
}
fread
((
void
*
)
gNB
->
common_vars
.
debugBuff
,
sizeof
(
short
),
30720
*
2
*
2
,
matlab_gen_file
);
for
(
int
idx_samp
=
0
;
idx_samp
<
30720
*
2
;
idx_samp
++
)
{
*
((
int16_t
*
)(
gNB
->
common_vars
.
debugBuff
+
idx_samp
))
>>=
2
;
*
(((
int16_t
*
)(
gNB
->
common_vars
.
debugBuff
+
idx_samp
))
+
1
)
>>=
2
;
*
((
int16_t
*
)(
gNB
->
common_vars
.
debugBuff
+
idx_samp
))
>>=
1
;
*
(((
int16_t
*
)(
gNB
->
common_vars
.
debugBuff
+
idx_samp
))
+
1
)
>>=
1
;
}
fclose
(
matlab_gen_file
);
matlab_gen_file
=
fopen
(
"/home/eurecom/sakthi/pdsch_mcs28_dci_ndi0_manual_matlab.dat"
,
"r"
);
if
(
matlab_gen_file
==
NULL
)
{
printf
(
"problem opening file
\n
"
);
exit
(
-
1
);
}
fread
((
void
*
)
gNB
->
common_vars
.
debugBuff
+
200000
,
sizeof
(
short
),
30720
*
2
*
2
,
matlab_gen_file
);
for
(
int
idx_samp
=
0
;
idx_samp
<
30720
*
2
;
idx_samp
++
)
{
*
((
int16_t
*
)(
gNB
->
common_vars
.
debugBuff
+
200000
+
idx_samp
))
>>=
1
;
*
(((
int16_t
*
)(
gNB
->
common_vars
.
debugBuff
+
200000
+
idx_samp
))
+
1
)
>>=
1
;
}
// map antennas and PRACH signals to gNB RX
if
(
0
)
AssertFatal
(
gNB
->
num_RU
>
0
,
"Number of RU attached to gNB %d is zero
\n
"
,
gNB
->
Mod_id
);
...
...
openair1/SCHED_NR/nr_ru_procedures.c
View file @
b408fcb0
...
...
@@ -168,9 +168,14 @@ void nr_feptx0(RU_t *ru,int tti_tx,int first_symbol, int num_symbols, int aa) {
}
}
static
int
ndi
=
0
;
if
(
tti_tx
==
1
)
{
//memset((void*)(&ru->common.txdata[aa][fp->get_samples_slot_timestamp(tti_tx,fp,0)]),0,sizeof(int16_t)*2*fp->get_samples_per_slot(tti_tx,fp));
memcpy
((
void
*
)(
&
ru
->
common
.
txdata
[
aa
][
fp
->
get_samples_slot_timestamp
(
tti_tx
,
fp
,
0
)]),(
void
*
)
&
ru
->
gNB_list
[
0
]
->
common_vars
.
debugBuff
[
30720
],
sizeof
(
int16_t
)
*
2
*
fp
->
get_samples_per_slot
(
tti_tx
,
fp
));
if
(
ndi
==
1
)
memcpy
((
void
*
)(
&
ru
->
common
.
txdata
[
aa
][
fp
->
get_samples_slot_timestamp
(
tti_tx
,
fp
,
0
)]),(
void
*
)
&
ru
->
gNB_list
[
0
]
->
common_vars
.
debugBuff
[
30720
],
sizeof
(
int16_t
)
*
2
*
fp
->
get_samples_per_slot
(
tti_tx
,
fp
));
else
memcpy
((
void
*
)(
&
ru
->
common
.
txdata
[
aa
][
fp
->
get_samples_slot_timestamp
(
tti_tx
,
fp
,
0
)]),(
void
*
)
&
ru
->
gNB_list
[
0
]
->
common_vars
.
debugBuff
[
200000
+
30720
],
sizeof
(
int16_t
)
*
2
*
fp
->
get_samples_per_slot
(
tti_tx
,
fp
));
ndi
^=
1
;
}
//VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM+(first_symbol!=0?1:0), 0);
...
...
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