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
lizhongxiao
OpenXG-RAN
Commits
ef0a267c
Commit
ef0a267c
authored
Aug 22, 2023
by
mlysenko
Committed by
Jerome Peraldi
Aug 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make USRP Setup work
parent
85367ea1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
CMakeLists.txt
CMakeLists.txt
+1
-1
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
+5
-3
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+2
-2
No files found.
CMakeLists.txt
View file @
ef0a267c
...
@@ -635,7 +635,7 @@ add_boolean_option(LINUX_LIST False "used only in lists.c: either u
...
@@ -635,7 +635,7 @@ add_boolean_option(LINUX_LIST False "used only in lists.c: either u
# PHY options
# PHY options
##########################
##########################
add_boolean_option
(
LOCALIZATION False
"???"
ON
)
add_boolean_option
(
LOCALIZATION False
"???"
ON
)
add_integer_option
(
MAX_NUM_CCs
3
"????"
ON
)
add_integer_option
(
MAX_NUM_CCs
1
"????"
ON
)
add_boolean_option
(
SMBV False
"Rohde&Schwarz SMBV100A vector signal generator"
ON
)
add_boolean_option
(
SMBV False
"Rohde&Schwarz SMBV100A vector signal generator"
ON
)
add_boolean_option
(
DEBUG_PHY False
"Enable PHY layer debugging options"
ON
)
add_boolean_option
(
DEBUG_PHY False
"Enable PHY layer debugging options"
ON
)
add_boolean_option
(
DEBUG_PHY_PROC False
"Enable debugging of PHY layer procedures"
ON
)
add_boolean_option
(
DEBUG_PHY_PROC False
"Enable debugging of PHY layer procedures"
ON
)
...
...
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler.c
View file @
ef0a267c
...
@@ -217,9 +217,11 @@ void gNB_dlsch_ulsch_scheduler(module_id_t module_idP,
...
@@ -217,9 +217,11 @@ void gNB_dlsch_ulsch_scheduler(module_id_t module_idP,
nr_schedule_ue_spec
(
module_idP
,
frame
,
slot
);
nr_schedule_ue_spec
(
module_idP
,
frame
,
slot
);
stop_meas
(
&
gNB
->
schedule_dlsch
);
stop_meas
(
&
gNB
->
schedule_dlsch
);
// This schedules Paging in slot
if
(
RC
.
ss
.
mode
>=
SS_SOFTMODEM
)
schedule_nr_PCH
(
module_idP
,
frame
,
slot
);
{
// This schedules Paging in slot
schedule_nr_PCH
(
module_idP
,
frame
,
slot
);
}
nr_sr_reporting
(
gNB
,
frame
,
slot
);
nr_sr_reporting
(
gNB
,
frame
,
slot
);
nr_schedule_pucch
(
gNB
,
frame
,
slot
);
nr_schedule_pucch
(
gNB
,
frame
,
slot
);
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
ef0a267c
...
@@ -861,8 +861,8 @@ static void rrc_gNB_generate_defaultRRCReconfiguration(const protocol_ctxt_t *co
...
@@ -861,8 +861,8 @@ static void rrc_gNB_generate_defaultRRCReconfiguration(const protocol_ctxt_t *co
buffer
,
buffer
,
RRC_BUF_SIZE
,
RRC_BUF_SIZE
,
xid
,
xid
,
*
SRB_configList2
,
(
RC
.
ss
.
mode
>=
SS_SOFTMODEM
)
?*
SRB_configList2
:
NULL
,
*
DRB_configList
,
(
RC
.
ss
.
mode
>=
SS_SOFTMODEM
)
?*
DRB_configList
:
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
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