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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG-RAN
Commits
60c206bd
Commit
60c206bd
authored
Oct 15, 2015
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup process_HARQ_feedback
parent
f156a996
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
161 additions
and
422 deletions
+161
-422
openair1/PHY/LTE_TRANSPORT/defs.h
openair1/PHY/LTE_TRANSPORT/defs.h
+5
-1
openair1/PHY/defs.h
openair1/PHY/defs.h
+2
-0
openair1/SCHED/phy_procedures_lte_eNb.c
openair1/SCHED/phy_procedures_lte_eNb.c
+153
-420
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+1
-1
No files found.
openair1/PHY/LTE_TRANSPORT/defs.h
View file @
60c206bd
...
@@ -576,7 +576,11 @@ typedef struct {
...
@@ -576,7 +576,11 @@ typedef struct {
double
power_based
;
double
power_based
;
}
eNB_UE_estimated_distances
;
}
eNB_UE_estimated_distances
;
typedef
struct
{
typedef
struct
LTE_eNB_UE_stats
{
#ifdef Rel10
/// pointers to secondary CC ue_stats
struct
LTE_eNB_UE_stats
*
ue_stats_s
[
5
];
#endif
/// UL RSSI per receive antenna
/// UL RSSI per receive antenna
int32_t
UL_rssi
[
NB_ANTENNAS_RX
];
int32_t
UL_rssi
[
NB_ANTENNAS_RX
];
/// PUCCH1a/b power (digital linear)
/// PUCCH1a/b power (digital linear)
...
...
openair1/PHY/defs.h
View file @
60c206bd
...
@@ -240,6 +240,8 @@ typedef struct PHY_VARS_eNB_s {
...
@@ -240,6 +240,8 @@ typedef struct PHY_VARS_eNB_s {
/// indicator of the pCell of the UE
/// indicator of the pCell of the UE
/// set to 1 if this cell is the primary cell of the UE
/// set to 1 if this cell is the primary cell of the UE
int
pCCflag
[
NUMBER_OF_UE_MAX
];
int
pCCflag
[
NUMBER_OF_UE_MAX
];
/// CC_id of secondary configured cells (int for it can be == -1)
int
sCC_id
[
NUMBER_OF_UE_MAX
][
5
];
#endif
#endif
/// cell-specific reference symbols
/// cell-specific reference symbols
...
...
openair1/SCHED/phy_procedures_lte_eNb.c
View file @
60c206bd
This diff is collapsed.
Click to expand it.
targets/RT/USER/lte-softmodem.c
View file @
60c206bd
...
@@ -1641,7 +1641,7 @@ if (sched_setattr(0, &attr, flags) < 0 ) {
...
@@ -1641,7 +1641,7 @@ if (sched_setattr(0, &attr, flags) < 0 ) {
}
}
cpu_set_t
cpuset
;
cpu_set_t
cpuset
;
CPU_ZERO
(
&
cpuset
);
CPU_ZERO
(
&
cpuset
);
CPU_SET
(
0
,
&
cpuset
);
CPU_SET
(
3
,
&
cpuset
);
if
(
pthread_setaffinity_np
(
pthread_self
(),
sizeof
(
cpu_set_t
),
&
cpuset
))
abort
();
if
(
pthread_setaffinity_np
(
pthread_self
(),
sizeof
(
cpu_set_t
),
&
cpuset
))
abort
();
#endif
#endif
...
...
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