Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
openairinterface-6g
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
openairinterface-6g
Commits
80223d36
Commit
80223d36
authored
Oct 29, 2025
by
Laurent THOMAS
Committed by
Robert Schmidt
Oct 30, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename nr_fill_prach to nr_schedule_rx_prach()
parent
1292cd68
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
11 deletions
+9
-11
doc/SW-archi-graph.md
doc/SW-archi-graph.md
+1
-1
openair1/PHY/NR_TRANSPORT/nr_prach.c
openair1/PHY/NR_TRANSPORT/nr_prach.c
+1
-1
openair1/PHY/NR_TRANSPORT/nr_transport_proto.h
openair1/PHY/NR_TRANSPORT/nr_transport_proto.h
+1
-1
openair1/SCHED/nfapi_lte_dummy.c
openair1/SCHED/nfapi_lte_dummy.c
+4
-6
openair1/SCHED/nfapi_nr_dummy.c
openair1/SCHED/nfapi_nr_dummy.c
+1
-1
openair1/SCHED_NR/fapi_nr_l1.c
openair1/SCHED_NR/fapi_nr_l1.c
+1
-1
No files found.
doc/SW-archi-graph.md
View file @
80223d36
...
@@ -39,7 +39,7 @@ rx_func_implem[rx_func]
...
@@ -39,7 +39,7 @@ rx_func_implem[rx_func]
--> handle_nr_nfapi_xxx_pdu
--> handle_nr_nfapi_xxx_pdu
--> sendTxFilled((L1_tx_filled))
--> sendTxFilled((L1_tx_filled))
--> nr_fill_ul_xxx
--> nr_fill_ul_xxx
--> nr_
fill_prach
--> nr_
schedule_rx_prach()
end
end
gNB_dlsch_ulsch_scheduler --> NR_Schedule_response
gNB_dlsch_ulsch_scheduler --> NR_Schedule_response
end
end
...
...
openair1/PHY/NR_TRANSPORT/nr_prach.c
View file @
80223d36
...
@@ -79,7 +79,7 @@ prach_item_t *find_nr_prach(prach_list_t *l, int frame, int slot, find_type_t ty
...
@@ -79,7 +79,7 @@ prach_item_t *find_nr_prach(prach_list_t *l, int frame, int slot, find_type_t ty
return
p
;
return
p
;
}
}
prach_item_t
*
nr_
fill
_prach
(
PHY_VARS_gNB
*
gNB
,
int
SFN
,
int
Slot
,
nfapi_nr_prach_pdu_t
*
prach_pdu
)
prach_item_t
*
nr_
schedule_rx
_prach
(
PHY_VARS_gNB
*
gNB
,
int
SFN
,
int
Slot
,
nfapi_nr_prach_pdu_t
*
prach_pdu
)
{
{
prach_item_t
*
prach
=
find_nr_prach
(
&
gNB
->
prach_list
,
SFN
,
Slot
,
SEARCH_EXIST_OR_FREE
);
prach_item_t
*
prach
=
find_nr_prach
(
&
gNB
->
prach_list
,
SFN
,
Slot
,
SEARCH_EXIST_OR_FREE
);
if
(
!
prach
)
{
if
(
!
prach
)
{
...
...
openair1/PHY/NR_TRANSPORT/nr_transport_proto.h
View file @
80223d36
...
@@ -200,7 +200,7 @@ void nr_fill_ulsch(PHY_VARS_gNB *gNB,
...
@@ -200,7 +200,7 @@ void nr_fill_ulsch(PHY_VARS_gNB *gNB,
int
slot
,
int
slot
,
nfapi_nr_pusch_pdu_t
*
ulsch_pdu
);
nfapi_nr_pusch_pdu_t
*
ulsch_pdu
);
prach_item_t
*
nr_
fill
_prach
(
PHY_VARS_gNB
*
gNB
,
int
SFN
,
int
Slot
,
nfapi_nr_prach_pdu_t
*
prach_pdu
);
prach_item_t
*
nr_
schedule_rx
_prach
(
PHY_VARS_gNB
*
gNB
,
int
SFN
,
int
Slot
,
nfapi_nr_prach_pdu_t
*
prach_pdu
);
typedef
struct
rx_prach_out
{
typedef
struct
rx_prach_out
{
uint16_t
max_preamble
;
uint16_t
max_preamble
;
...
...
openair1/SCHED/nfapi_lte_dummy.c
View file @
80223d36
...
@@ -41,12 +41,10 @@ void nr_fill_pucch(PHY_VARS_gNB *gNB,
...
@@ -41,12 +41,10 @@ void nr_fill_pucch(PHY_VARS_gNB *gNB,
int
frame
,
int
frame
,
int
slot
,
int
slot
,
nfapi_nr_pucch_pdu_t
*
pucch_pdu
){}
nfapi_nr_pucch_pdu_t
*
pucch_pdu
){}
void
nr_fill_prach
(
PHY_VARS_gNB
*
gNB
,
void
nr_schedule_rx_prach
(
PHY_VARS_gNB
*
gNB
,
int
SFN
,
int
Slot
,
nfapi_nr_prach_pdu_t
*
prach_pdu
)
int
SFN
,
{
int
Slot
,
}
nfapi_nr_prach_pdu_t
*
prach_pdu
){}
void
nr_fill_prach_ru
(
RU_t
*
ru
,
prach_item_t
*
gnb_prach
){}
void
nr_phy_config_request
(
NR_PHY_Config_t
*
gNB
){}
void
nr_phy_config_request
(
NR_PHY_Config_t
*
gNB
){}
void
install_nr_schedule_handlers
(
NR_IF_Module_t
*
if_inst
){}
void
install_nr_schedule_handlers
(
NR_IF_Module_t
*
if_inst
){}
...
...
openair1/SCHED/nfapi_nr_dummy.c
View file @
80223d36
...
@@ -37,7 +37,7 @@ void nr_fill_pucch(PHY_VARS_gNB *gNB,
...
@@ -37,7 +37,7 @@ void nr_fill_pucch(PHY_VARS_gNB *gNB,
int
frame
,
int
frame
,
int
slot
,
int
slot
,
nfapi_nr_pucch_pdu_t
*
pucch_pdu
){}
nfapi_nr_pucch_pdu_t
*
pucch_pdu
){}
void
nr_
fill
_prach
(
PHY_VARS_gNB
*
gNB
,
int
SFN
,
int
Slot
,
nfapi_nr_prach_pdu_t
*
prach_pdu
)
void
nr_
schedule_rx
_prach
(
PHY_VARS_gNB
*
gNB
,
int
SFN
,
int
Slot
,
nfapi_nr_prach_pdu_t
*
prach_pdu
)
{
{
}
}
...
...
openair1/SCHED_NR/fapi_nr_l1.c
View file @
80223d36
...
@@ -155,7 +155,7 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
...
@@ -155,7 +155,7 @@ void nr_schedule_ul_tti_req(PHY_VARS_gNB *gNB, nfapi_nr_ul_tti_request_t *UL_tti
UL_tti_req
->
Slot
);
UL_tti_req
->
Slot
);
nfapi_nr_prach_pdu_t
*
prach_pdu
=
&
UL_tti_req
->
pdus_list
[
i
].
prach_pdu
;
nfapi_nr_prach_pdu_t
*
prach_pdu
=
&
UL_tti_req
->
pdus_list
[
i
].
prach_pdu
;
LOG_D
(
NR_PHY_RACH
,
"Add prach decoding request for %d.%d
\n
"
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
LOG_D
(
NR_PHY_RACH
,
"Add prach decoding request for %d.%d
\n
"
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
);
prach_item_t
*
prach
=
nr_
fill
_prach
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
prach_pdu
);
prach_item_t
*
prach
=
nr_
schedule_rx
_prach
(
gNB
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
prach_pdu
);
if
(
!
prach
)
if
(
!
prach
)
LOG_W
(
NR_PHY_RACH
,
"Error in scheduling rach
\n
"
);
LOG_W
(
NR_PHY_RACH
,
"Error in scheduling rach
\n
"
);
/* the present design is not supporting multiple gNB in one RU
/* the present design is not supporting multiple gNB in one RU
...
...
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