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
lizhongxiao
OpenXG UE
Commits
f1b3ce31
Commit
f1b3ce31
authored
Jan 25, 2021
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed warnings on lte-softmodem compilation
parent
32ff3c95
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
5 deletions
+16
-5
openair1/PHY/INIT/nr_init_ru.c
openair1/PHY/INIT/nr_init_ru.c
+1
-0
openair1/PHY/INIT/phy_init.h
openair1/PHY/INIT/phy_init.h
+1
-0
openair1/PHY/LTE_ESTIMATION/lte_estimation.h
openair1/PHY/LTE_ESTIMATION/lte_estimation.h
+1
-0
openair1/PHY/LTE_TRANSPORT/dci_tools.c
openair1/PHY/LTE_TRANSPORT/dci_tools.c
+1
-1
openair1/PHY/LTE_TRANSPORT/if5_tools.c
openair1/PHY/LTE_TRANSPORT/if5_tools.c
+1
-1
openair1/PHY/LTE_TRANSPORT/prach.c
openair1/PHY/LTE_TRANSPORT/prach.c
+1
-1
openair2/LAYER2/PROTO_AGENT/proto_agent_common.c
openair2/LAYER2/PROTO_AGENT/proto_agent_common.c
+7
-0
openair3/NAS/COMMON/IES/NasPagingIdentity.h
openair3/NAS/COMMON/IES/NasPagingIdentity.h
+2
-2
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-enb.c
+1
-0
No files found.
openair1/PHY/INIT/nr_init_ru.c
View file @
f1b3ce31
...
...
@@ -29,6 +29,7 @@
#include "assertions.h"
#include <math.h>
#include "openair1/PHY/defs_RU.h"
#include "openair1/PHY/NR_TRANSPORT/nr_transport_proto.h"
extern
const
char
ru_if_types
[
MAX_RU_IF_TYPES
][
20
];
...
...
openair1/PHY/INIT/phy_init.h
View file @
f1b3ce31
...
...
@@ -408,6 +408,7 @@ void init_nr_transport(PHY_VARS_gNB *gNB);
void
init_dfts
(
void
);
void
fill_subframe_mask
(
PHY_VARS_eNB
*
eNB
);
/** @} */
#endif
...
...
openair1/PHY/LTE_ESTIMATION/lte_estimation.h
View file @
f1b3ce31
...
...
@@ -289,5 +289,6 @@ void freq_equalization(LTE_DL_FRAME_PARMS *frame_parms,
unsigned
char
Qm
);
void
dump_I0_stats
(
FILE
*
fd
,
PHY_VARS_eNB
*
eNB
);
/** @} */
#endif
openair1/PHY/LTE_TRANSPORT/dci_tools.c
View file @
f1b3ce31
...
...
@@ -474,7 +474,7 @@ void fill_dci_and_dlsch(PHY_VARS_eNB *eNB,
((
DCI1A_20MHz_TDD_1_6_t
*
)
dci_pdu
)
->
harq_pid
=
rel8
->
harq_process
;
((
DCI1A_20MHz_TDD_1_6_t
*
)
dci_pdu
)
->
dai
=
rel8
->
downlink_assignment_index
;
((
DCI1A_20MHz_TDD_1_6_t
*
)
dci_pdu
)
->
padding
=
0
;
LOG_D
(
PHY
,
"TDD 1A: mcs %d, rballoc %x,rv %d, NPRB %d
\n
"
,
rel8
->
mcs_1
,
rel8
->
resource_block_coding
,
rel8
->
redundancy_version_1
,
NPRB
);
//
LOG_D(PHY,"TDD 1A: mcs %d, rballoc %x,rv %d, NPRB %d\n",rel8->mcs_1,rel8->resource_block_coding,rel8->redundancy_version_1,NPRB);
}
else
{
dci_alloc
->
dci_length
=
sizeof_DCI1A_20MHz_FDD_t
;
((
DCI1A_20MHz_FDD_t
*
)
dci_pdu
)
->
type
=
1
;
...
...
openair1/PHY/LTE_TRANSPORT/if5_tools.c
View file @
f1b3ce31
...
...
@@ -1469,7 +1469,7 @@ void recv_IF5(RU_t *ru, openair0_timestamp *proc_timestamp, int subframe, uint16
// HYPOTHESIS: first packet per subframe has lowest timestamp of subframe
// should detect out of order and act accordingly ....
AssertFatal
(
aid
==
0
||
aid
==
1
,
"aid %d != 0 or 1
\n
"
,
aid
);
LOG_D
(
PHY
,
"rxp[%d] %p, dest %p, offset %d (%ll
d,%lld)
\n
"
,
aid
,
rxp
[
aid
],
rxp
[
aid
]
+
(
timestamp
[
packet_id
]
-
timestamp
[
0
]),(
int
)(
timestamp
[
packet_id
]
-
timestamp
[
0
]),
timestamp
[
packet_id
],
timestamp
[
0
]);
LOG_D
(
PHY
,
"rxp[%d] %p, dest %p, offset %d (%ll
u,%llu)
\n
"
,
aid
,
rxp
[
aid
],
rxp
[
aid
]
+
(
timestamp
[
packet_id
]
-
timestamp
[
0
]),(
int
)(
timestamp
[
packet_id
]
-
timestamp
[
0
]),(
long
long
unsigned
int
)
timestamp
[
packet_id
],(
long
long
unsigned
int
)
timestamp
[
0
]);
memcpy
((
void
*
)(
rxp
[
aid
]
+
(
timestamp
[
packet_id
]
-
timestamp
[
0
])),
(
void
*
)
temp_rx
,
spp_eth
<<
2
);
...
...
openair1/PHY/LTE_TRANSPORT/prach.c
View file @
f1b3ce31
...
...
@@ -85,7 +85,7 @@ void rx_prach0(PHY_VARS_eNB *eNB,
uint8_t
aa
;
int32_t
lev
;
int16_t
levdB
;
int
fft_size
,
log2_ifft_size
;
int
fft_size
=
0
,
log2_ifft_size
;
int16_t
prach_ifft_tmp
[
2048
*
2
]
__attribute__
((
aligned
(
32
)));
int32_t
*
prach_ifft
=
(
int32_t
*
)
NULL
;
int32_t
**
prach_ifftp
=
(
int32_t
**
)
NULL
;
...
...
openair2/LAYER2/PROTO_AGENT/proto_agent_common.c
View file @
f1b3ce31
...
...
@@ -500,6 +500,13 @@ error:
return
-
1
;
}
boolean_t
pdcp_data_ind
(
const
protocol_ctxt_t
*
const
ctxt_pP
,
const
srb_flag_t
srb_flagP
,
const
MBMS_flag_t
MBMS_flagP
,
const
rb_id_t
rb_id
,
const
sdu_size_t
sdu_buffer_size
,
mem_block_t
*
const
sdu_buffer
);
int
proto_agent_pdcp_data_ind_process
(
mod_id_t
mod_id
,
const
void
*
params
,
Protocol__FlexsplitMessage
**
msg
)
{
boolean_t
result
=
0
;
...
...
openair3/NAS/COMMON/IES/NasPagingIdentity.h
View file @
f1b3ce31
...
...
@@ -25,8 +25,8 @@
#include "OctetString.h"
#ifndef PAGING_IDENTITY_H_
#define PAGING_IDENTITY_H_
#ifndef
NAS
PAGING_IDENTITY_H_
#define
NAS
PAGING_IDENTITY_H_
#define PAGING_IDENTITY_MINIMUM_LENGTH 2
#define PAGING_IDENTITY_MAXIMUM_LENGTH 2
...
...
targets/RT/USER/lte-enb.c
View file @
f1b3ce31
...
...
@@ -70,6 +70,7 @@
#include "PHY/LTE_TRANSPORT/if4_tools.h"
#include "PHY/LTE_TRANSPORT/if5_tools.h"
#include "PHY/LTE_ESTIMATION/lte_estimation.h"
#include "PHY/phy_extern.h"
...
...
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