Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
OpenXG
OpenXG UE
Commits
b9d9c0b4
Commit
b9d9c0b4
authored
Mar 30, 2021
by
rmagueta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issues due to merge
parent
286a1d6a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
6 deletions
+7
-6
openair1/PHY/NR_TRANSPORT/nr_dlsch.c
openair1/PHY/NR_TRANSPORT/nr_dlsch.c
+1
-1
openair1/SCHED_NR_UE/phy_procedures_nr_ue.c
openair1/SCHED_NR_UE/phy_procedures_nr_ue.c
+3
-3
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
+2
-1
openair2/RRC/NR_UE/rrc_UE.c
openair2/RRC/NR_UE/rrc_UE.c
+1
-1
No files found.
openair1/PHY/NR_TRANSPORT/nr_dlsch.c
View file @
b9d9c0b4
...
...
@@ -521,7 +521,7 @@ uint8_t nr_generate_pdsch(PHY_VARS_gNB *gNB,
gNB
->
common_vars
.
beam_id
[
0
][
slot
*
frame_parms
->
symbols_per_slot
+
j
]
=
rel15
->
precodingAndBeamforming
.
prgs_list
[
0
].
dig_bf_interface_list
[
0
].
beam_idx
;
}
else
{
LOG_
W
(
PHY
,
"beam index for PDSCH allocation already taken
\n
"
);
LOG_
D
(
PHY
,
"beam index for PDSCH allocation already taken
\n
"
);
}
}
// dlsch loop
...
...
openair1/SCHED_NR_UE/phy_procedures_nr_ue.c
View file @
b9d9c0b4
...
...
@@ -234,7 +234,7 @@ void ue_ta_procedures(PHY_VARS_NR_UE *ue, int slot_tx, int frame_tx){
ue
->
timing_advance
+=
(
ul_time_alignment
->
ta_command
-
31
)
*
bw_scaling
;
LOG_
I
(
PHY
,
"In %s: [UE %d] [%d.%d] Got timing advance command %u from MAC, new value is %d
\n
"
,
LOG_
D
(
PHY
,
"In %s: [UE %d] [%d.%d] Got timing advance command %u from MAC, new value is %d
\n
"
,
__FUNCTION__
,
ue
->
Mod_id
,
frame_tx
,
...
...
@@ -1692,9 +1692,9 @@ int phy_procedures_nrUE_RX(PHY_VARS_NR_UE *ue,
}
if
((
frame_rx
%
64
==
0
)
&&
(
nr_slot_rx
==
0
))
{
printf
(
"============================================
\n
"
);
LOG_I
(
PHY
,
"============================================
\n
"
);
LOG_I
(
PHY
,
"Harq round stats for Downlink: %d/%d/%d/%d DLSCH errors: %d
\n
"
,
ue
->
dl_stats
[
0
],
ue
->
dl_stats
[
1
],
ue
->
dl_stats
[
2
],
ue
->
dl_stats
[
3
],
ue
->
dl_stats
[
4
]);
printf
(
"============================================
\n
"
);
LOG_I
(
PHY
,
"============================================
\n
"
);
}
#ifdef NR_PDCCH_SCHED
...
...
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
View file @
b9d9c0b4
...
...
@@ -663,7 +663,8 @@ void nr_get_Msg3alloc(module_id_t module_id,
NR_BWP_Uplink_t
*
ubwp
,
sub_frame_t
current_slot
,
frame_t
current_frame
,
NR_RA_t
*
ra
)
{
NR_RA_t
*
ra
,
int16_t
*
tdd_beam_association
)
{
// msg3 is schedulend in mixed slot in the following TDD period
...
...
openair2/RRC/NR_UE/rrc_UE.c
View file @
b9d9c0b4
...
...
@@ -2568,7 +2568,7 @@ void *rrc_nrue_task( void *args_p ) {
LOG_E
(
NR_RRC
,
"[UE %d] Received unexpected message %s
\n
"
,
ue_mod_id
,
ITTI_MSG_NAME
(
msg_p
));
break
;
}
LOG_
I
(
NR_RRC
,
"[UE %d] RRC Status %d
\n
"
,
ue_mod_id
,
nr_rrc_get_state
(
ue_mod_id
));
LOG_
D
(
NR_RRC
,
"[UE %d] RRC Status %d
\n
"
,
ue_mod_id
,
nr_rrc_get_state
(
ue_mod_id
));
result
=
itti_free
(
ITTI_MSG_ORIGIN_ID
(
msg_p
),
msg_p
);
AssertFatal
(
result
==
EXIT_SUCCESS
,
"Failed to free memory (%d)!
\n
"
,
result
);
msg_p
=
NULL
;
...
...
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