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
b1adf9da
Commit
b1adf9da
authored
Nov 14, 2019
by
Ting-An Lin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix PHY warnings
parent
232d51d8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
openair1/PHY/NBIoT_TRANSPORT/dci_NB_IoT.c
openair1/PHY/NBIoT_TRANSPORT/dci_NB_IoT.c
+7
-6
openair1/PHY/NBIoT_TRANSPORT/ulsch_demodulation_NB_IoT.c
openair1/PHY/NBIoT_TRANSPORT/ulsch_demodulation_NB_IoT.c
+2
-1
No files found.
openair1/PHY/NBIoT_TRANSPORT/dci_NB_IoT.c
View file @
b1adf9da
...
...
@@ -37,6 +37,7 @@
#endif
#include "PHY/defs_common.h"
#include "PHY/impl_defs_lte_NB_IoT.h"
#include "defs_NB_IoT.h"
//#include "PHY/LTE_TRANSPORT/proto_NB_IoT.h"
//#include "PHY/CODING/defs_NB_IoT.h"
#include "PHY/defs_L1_NB_IoT.h" // /LTE_TRANSPORT/defs_NB_IoT.h
...
...
@@ -338,7 +339,7 @@ int dci_modulation_NB_IoT(int32_t **txdataF,
txdataF
,
&
jj
,
symbol_offset
,
&
dlcch
->
npdcch_e
[
0
],
&
dlcch
->
npdcch_e
[
0
]
[
MAX_BITS_IN_SF
]
,
pilots
,
pilot_shift
,
amp
,
...
...
@@ -351,7 +352,7 @@ int dci_modulation_NB_IoT(int32_t **txdataF,
txdataF
,
&
jj
,
symbol_offset
,
&
dlcch
->
npdcch_e
[
ncce_index
],
&
dlcch
->
npdcch_e
[
ncce_index
]
[
MAX_BITS_IN_SF
]
,
pilots
,
pilot_shift
,
amp
,
...
...
@@ -383,9 +384,9 @@ uint8_t generate_dci_top_NB_IoT(NB_IoT_eNB_NPDCCH_t *npdcch,
{
int
i
,
G
;
int
i
=
2
,
G
=
0
;
//temporary variable
uint16_t
rnti
[
2
];
uint16_t
rnti
[
i
];
uint8_t
L
=
0
;
...
...
@@ -415,8 +416,8 @@ uint8_t generate_dci_top_NB_IoT(NB_IoT_eNB_NPDCCH_t *npdcch,
//First take all the DCI pdu and their corrispondent rnti
for
(
i
=
0
;
i
<
Num_dci
;
i
++
)
{
npdcch
->
pdu
[
i
]
[
0
]
=
dci_alloc
[
i
].
dci_pdu
;
rnti
[
i
]
=
dci_alloc
[
i
].
rnti
;
npdcch
->
pdu
[
i
]
=
(
uint8_t
*
)
dci_alloc
[
i
].
dci_pdu
;
rnti
[
i
]
=
dci_alloc
[
i
].
rnti
;
L
=
dci_alloc
[
i
].
L
;
}
...
...
openair1/PHY/NBIoT_TRANSPORT/ulsch_demodulation_NB_IoT.c
View file @
b1adf9da
...
...
@@ -36,6 +36,7 @@
#include "extern_NB_IoT.h"
#include "PHY/CODING/lte_interleaver2.h"
#include "PHY/CODING/coding_extern.h"
#include "PHY/LTE_REFSIG/lte_refsig.h"
//#define DEBUG_ULSCH
//#include "PHY/sse_intrin.h"
#include "PHY/NBIoT_ESTIMATION/defs_NB_IoT.h"
...
...
@@ -1658,7 +1659,7 @@ uint32_t turbo_decoding_NB_IoT(PHY_VARS_eNB_NB_IoT *eNB,
printf
(
" MSG3 NOT OK"
);
}
}
//////////// r loop end ////////////
return
0
;
}
//////////////////////////////////////////////////////////////////////////////////////////
...
...
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