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
canghaiwuhen
OpenXG-RAN
Commits
6010c7fd
Commit
6010c7fd
authored
Jun 26, 2017
by
Nick Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Managing the TX
parent
f7236598
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
openair1/SCHED/defs_nb_iot.h
openair1/SCHED/defs_nb_iot.h
+5
-0
openair1/SCHED/phy_procedures_lte_eNb_nb_iot.c
openair1/SCHED/phy_procedures_lte_eNb_nb_iot.c
+18
-0
openair2/PHY_INTERFACE/IF_Module_nb_iot.h
openair2/PHY_INTERFACE/IF_Module_nb_iot.h
+3
-1
No files found.
openair1/SCHED/defs_nb_iot.h
View file @
6010c7fd
...
...
@@ -7,6 +7,11 @@
#include "PHY/defs_nb_iot.h"
#include "openair2/PHY_INTERFACE/IF_Module_nb_iot.h"
void
process_schedule_rsp
(
Sched_Rsp_t
*
sched_rsp
,
PHY_VARS_eNB
*
eNB
,
eNB_rxtx_proc_NB_t
*
proc
,
const
int
UE_id
);
/*Processing the ue-specific resources for uplink in NB-IoT*/
void
NB_phy_procedures_eNB_uespec_RX
(
PHY_VARS_eNB
*
eNB
,
eNB_rxtx_proc_t
*
proc
,
UL_IND_t
*
UL_INFO
);
...
...
openair1/SCHED/phy_procedures_lte_eNb_nb_iot.c
View file @
6010c7fd
...
...
@@ -572,6 +572,24 @@ void NB_generate_eNB_ulsch_params(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc,Sched_
}
/*
* process the following message
*
*/
void
process_schedule_rsp
(
Sched_Rsp_t
*
sched_rsp
,
PHY_VARS_eNB
*
eNB
,
eNB_rxtx_proc_NB_t
*
proc
,
const
int
UE_id
)
{
// check for the MIB (process N-BCH PDU)
if
(
sched_rsp
->
NB_DL
.
NB_BCH
.
MIB_pdu
.
segments
[
0
].
segment_data
)
!=
NULL
)
{
}
}
extern
int
oai_exit
;
...
...
openair2/PHY_INTERFACE/IF_Module_nb_iot.h
View file @
6010c7fd
...
...
@@ -174,13 +174,15 @@ typedef struct{
typedef
struct
{
// these structures contains both instruction and PDUs itself
npdcch_t
NB_DCI
;
npdsch_t
NB_DLSCH
;
npbch_t
NB_BCH
;
nulsch_t
NB_UL
;
nulsch_t
NB_UL
_config
;
}
NB_DL_t
;
...
...
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