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
7955cb4f
Commit
7955cb4f
authored
4 years ago
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tested IF4p5 on asterix/obelix (100 PRB via 1 Gbit/s)
parent
f0320ea0
develop
NRUE_usedlschparallel
NR_10MHz
NR_DLUL_PF
NR_DLUL_PF_4UL
NR_DLUL_PF_rebased
NR_DL_MIMO
NR_FAPI_beamindex_SSB_RO
NR_FDD_FIX
NR_FR2_RA
NR_MAC_Multi_Rach_GlobalEdge
NR_MAC_TCI_UCI_GlobalEdge
NR_PUCCH_MultiUE
NR_RA_cleanup
NR_SA_F1AP_RFSIMULATOR
NR_SA_F1AP_RFSIMULATOR2
NR_SA_F1AP_dev
NR_SA_itti_sim_wk48
NR_SA_itti_sim_wk48_hs1
NR_SCHED_HARQ
NR_SCHED_PDCCH_PUCCH_HARQ
NR_SCHED_PDCCH_PUCCH_HARQ_rebased
NR_SCHED_fixes
NR_UE_dlsch_bugfix
NR_Wireshark
NR_beam_simulation
NR_scheduling_request
NR_scheduling_request2
NR_scheduling_request3
benetel_driver_uldl_pf_merge
benetel_driver_update
bugfix-x2-SgNBAdditionRequest
bupt-sa-merge
ci-test
cleanup_softmodem_main
constant_power
develop-SA-RA
develop-SnT
develop-oriecpriupdates
develop-sib1
develop-sib1-local
develop-sib1-lts
develop-sib1-update
develop-sib1-update-test1
develop-sib1-update-ue
develop_stable
fix_NR_DLUL_PF
fix_do_ra_data
fixes-CE-RLC-PDU-size
gnb-only-test
integration_2020_wk50
integration_2020_wk50_1
integration_2020_wk51
integration_2020_wk51_2
integration_2021_wk02
integration_2021_wk02_wMR988
integration_2021_wk04
integration_2021_wk05
inter-RRU-final
itti-enhancement
lte-ulsch-bugfix
lte_uplink_improvement
minor-fix-doc-basic-sim
nasmesh_kernel_5.8
new-gtpu
nfapi_nr_develop
nr_ul_pf
nr_ul_scfdma
oairu
oairu-dockerfile-support
openxg/develop
ptrs_rrc_config
pusch-retrans-fix-ue
rh-ci-add-ue-parallelization
rh_ci_ra_fr2
rh_ci_ue_parallel
rh_wk50_debug
s1-subnormal_rewrite
s1_subnormal
s1_subnormal-robert
sa-merge-rrc-srb
sa-msg4
sa-msg4-rrc
sa-msg4-rrc-yihz
sa-msg4-rrc-yihz-hs
sa_rrc_yihz
small-config-change
ue-fixes
ue_beam_selection
wireshark-T-hack-ueid
wireshark-log-scheduling-requests
xiangwab
xiangwan
2021.w04
2021.w02
2020.w51_2
2020.w51
2020.w50
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
18 deletions
+9
-18
openair1/PHY/MODULATION/ofdm_mod.c
openair1/PHY/MODULATION/ofdm_mod.c
+4
-14
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/LTE_PHY/dlsim.c
+2
-2
targets/ARCH/ETHERNET/USERSPACE/LIB/eth_udp.c
targets/ARCH/ETHERNET/USERSPACE/LIB/eth_udp.c
+3
-2
No files found.
openair1/PHY/MODULATION/ofdm_mod.c
View file @
7955cb4f
...
...
@@ -90,9 +90,8 @@ void PHY_ofdm_mod(int *input, /// pointer to complex input
if
(
nb_symbols
==
0
)
return
;
short
temp
[
2
*
2
*
6144
*
4
]
__attribute__
((
aligned
(
32
)));
unsigned
short
i
,
j
;
short
k
;
int16_t
temp
[
2
*
2
*
6144
*
4
]
__attribute__
((
aligned
(
32
)));
int
i
,
j
;
volatile
int
*
output_ptr
=
(
int
*
)
0
;
...
...
@@ -190,18 +189,9 @@ void PHY_ofdm_mod(int *input, /// pointer to complex input
if
(
fftsize
==
128
)
#endif
{
/*for (j=0; j<fftsize ; j++) {
output_ptr[j] = temp_ptr[j];
}*/
memcpy1
((
void
*
)
output_ptr
,(
void
*
)
temp_ptr
,
fftsize
<<
2
);
memcpy
((
void
*
)
output_ptr
,(
void
*
)
temp_ptr
,
fftsize
<<
2
);
}
j
=
fftsize
;
for
(
k
=-
1
;
k
>=-
nb_prefix_samples
;
k
--
)
{
output_ptr
[
k
]
=
output_ptr
[
--
j
];
}
memcpy
((
void
*
)
&
output_ptr
[
-
nb_prefix_samples
],(
void
*
)
&
output_ptr
[
fftsize
-
nb_prefix_samples
],
nb_prefix_samples
<<
2
);
break
;
case
CYCLIC_SUFFIX
:
...
...
This diff is collapsed.
Click to expand it.
openair1/SIMULATION/LTE_PHY/dlsim.c
View file @
7955cb4f
...
...
@@ -487,7 +487,7 @@ int n_ch_rlz = 1;
int
rx_sample_offset
=
0
;
int
xforms
=
0
;
int
dump_table
=
0
;
int
loglvl
=
OAILOG_
WARNING
;
int
loglvl
=
OAILOG_
INFO
;
int
mcs1
=
0
,
mcs2
=
0
,
mcs_i
=
0
,
dual_stream_UE
=
0
,
awgn_flag
=
0
;
int
two_thread_flag
=
0
;
int
num_rounds
=
4
;
//,fix_rounds=0;
...
...
@@ -670,7 +670,7 @@ int main(int argc, char **argv) {
{
"XForms"
,
"Display the soft scope"
,
PARAMFLAG_BOOL
,
iptr
:&
xforms
,
defintval
:
0
,
TYPE_INT
,
0
},
{
"Yperfect_ce"
,
"Perfect CE"
,
PARAMFLAG_BOOL
,
iptr
:&
perfect_ce
,
defintval
:
0
,
TYPE_INT
,
0
},
{
"Zdump"
,
"dump table"
,
PARAMFLAG_BOOL
,
iptr
:&
dump_table
,
defintval
:
0
,
TYPE_INT
,
0
},
{
"Loglvl"
,
"log level"
,
0
,
iptr
:&
loglvl
,
defintval
:
OAILOG_
DEBUG
,
TYPE_INT
,
0
},
{
"Loglvl"
,
"log level"
,
0
,
iptr
:&
loglvl
,
defintval
:
OAILOG_
INFO
,
TYPE_INT
,
0
},
{
"zn_rx"
,
"Number of RX antennas used in UE"
,
0
,
iptr
:
NULL
,
defintval
:
2
,
TYPE_INT
,
0
},
{
"gchannel"
,
"[A:M] Use 3GPP 25.814 SCM-A/B/C/D('A','B','C','D') or 36-101 EPA('E'), EVA ('F'),ETU('G') models (ignores delay spread and Ricean factor), Rayghleigh8 ('H'), Rayleigh1('I'), Rayleigh1_corr('J'), Rayleigh1_anticorr ('K'), Rice8('L'), Rice1('M')"
,
0
,
strptr
:
NULL
,
defstrval
:
NULL
,
TYPE_STRING
,
0
},
{
"verbose"
,
"display debug text"
,
PARAMFLAG_BOOL
,
iptr
:&
verbose
,
defintval
:
0
,
TYPE_INT
,
0
},
...
...
This diff is collapsed.
Click to expand it.
targets/ARCH/ETHERNET/USERSPACE/LIB/eth_udp.c
View file @
7955cb4f
...
...
@@ -202,8 +202,9 @@ int trx_eth_read_udp_IF4p5(openair0_device *device, openair0_timestamp *timestam
goto
again
;
}
}
else
{
perror
(
"ETHERNET IF4p5 READ"
);
printf
(
"(%s):
\n
"
,
strerror
(
errno
));
return
(
-
1
);
//perror("ETHERNET IF4p5 READ");
//printf("(%s):\n", strerror(errno));
}
}
else
{
*
timestamp
=
test_header
->
sub_type
;
...
...
This diff is collapsed.
Click to expand it.
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