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
288c29da
Commit
288c29da
authored
Mar 18, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply review suggestions
parent
a7e7d05d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
15 deletions
+15
-15
openair1/PHY/NR_TRANSPORT/pucch_rx.c
openair1/PHY/NR_TRANSPORT/pucch_rx.c
+7
-7
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
+6
-6
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+2
-2
No files found.
openair1/PHY/NR_TRANSPORT/pucch_rx.c
View file @
288c29da
...
...
@@ -287,8 +287,8 @@ void nr_decode_pucch0(PHY_VARS_gNB *gNB,
for
(
int
aa
=
0
;
aa
<
frame_parms
->
nb_antennas_rx
;
aa
++
)
{
c16_t
*
r
=
(
c16_t
*
)
&
rxdataF
[
aa
][
soffset
+
(
l2
*
frame_parms
->
ofdm_symbol_size
)
+
re_offset
[
l
]];
for
(
n
=
0
;
n
<
12
;
n
++
)
{
xr
[
aa
][
l
][
n
].
r
+=
(
int32_t
)
x_re
[
l
][
n
]
*
r
[
n
].
r
+
(
int32_t
)
x_im
[
l
][
n
]
*
r
[
n
].
i
;
xr
[
aa
][
l
][
n
].
i
+=
(
int32_t
)
x_re
[
l
][
n
]
*
r
[
n
].
i
-
(
int32_t
)
x_im
[
l
][
n
]
*
r
[
n
].
r
;
xr
[
aa
][
l
][
n
].
r
+=
(
int32_t
)
x_re
[
l
][
n
]
*
r
[
n
].
r
+
(
int32_t
)
x_im
[
l
][
n
]
*
r
[
n
].
i
;
xr
[
aa
][
l
][
n
].
i
+=
(
int32_t
)
x_re
[
l
][
n
]
*
r
[
n
].
i
-
(
int32_t
)
x_im
[
l
][
n
]
*
r
[
n
].
r
;
#ifdef DEBUG_NR_PUCCH_RX
printf
(
"x (%d,%d), r%d.%d (%d,%d), xr (%lld,%lld)
\n
"
,
x_re
[
l
][
n
],
x_im
[
l
][
n
],
l2
,
re_offset
[
l
],
r
[
n
].
r
,
r
[
n
].
i
,
xr
[
aa
][
l
][
n
].
r
,
xr
[
aa
][
l
][
n
].
i
);
...
...
@@ -317,12 +317,12 @@ void nr_decode_pucch0(PHY_VARS_gNB *gNB,
for
(
int
aa
=
0
;
aa
<
frame_parms
->
nb_antennas_rx
;
aa
++
)
{
corr_re
[
aa
][
l
]
=
0
;
corr_im
[
aa
][
l
]
=
0
;
for
(
n
=
0
;
n
<
12
;
n
++
)
{
corr_re
[
aa
][
l
]
+=
xr
[
aa
][
l
][
n
].
r
*
idft12_re
[
seq_index
][
n
]
+
xr
[
aa
][
l
][
n
].
i
*
idft12_im
[
seq_index
][
n
];
corr_im
[
aa
][
l
]
+=
xr
[
aa
][
l
][
n
].
r
*
idft12_im
[
seq_index
][
n
]
-
xr
[
aa
][
l
][
n
].
i
*
idft12_re
[
seq_index
][
n
];
for
(
n
=
0
;
n
<
12
;
n
++
)
{
corr_re
[
aa
][
l
]
+=
xr
[
aa
][
l
][
n
].
r
*
idft12_re
[
seq_index
][
n
]
+
xr
[
aa
][
l
][
n
].
i
*
idft12_im
[
seq_index
][
n
];
corr_im
[
aa
][
l
]
+=
xr
[
aa
][
l
][
n
].
r
*
idft12_im
[
seq_index
][
n
]
-
xr
[
aa
][
l
][
n
].
i
*
idft12_re
[
seq_index
][
n
];
}
corr_re
[
aa
][
l
]
>>=
15
;
corr_im
[
aa
][
l
]
>>=
15
;
corr_re
[
aa
][
l
]
>>=
15
;
corr_im
[
aa
][
l
]
>>=
15
;
}
}
LOG_D
(
PHY
,
"PUCCH IDFT[%d/%d] = (%ld,%ld)=>%f
\n
"
,
...
...
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
View file @
288c29da
...
...
@@ -118,14 +118,14 @@ typedef struct {
}
__attribute__
((
__packed__
))
NR_MAC_SUBHEADER_FIXED
;
static
inline
void
getMacLen
(
uint8_t
*
pdu
,
uint16_t
*
mac_ce_len
,
uint16_t
*
mac_subheader_len
)
{
NR_MAC_SUBHEADER_SHORT
*
s
=
(
NR_MAC_SUBHEADER_SHORT
*
)
pdu
;
NR_MAC_SUBHEADER_LONG
*
l
=
(
NR_MAC_SUBHEADER_LONG
*
)
pdu
;
NR_MAC_SUBHEADER_SHORT
*
s
=
(
NR_MAC_SUBHEADER_SHORT
*
)
pdu
;
NR_MAC_SUBHEADER_LONG
*
l
=
(
NR_MAC_SUBHEADER_LONG
*
)
pdu
;
if
(
s
->
F
)
{
*
mac_subheader_len
=
sizeof
(
*
l
);
*
mac_ce_len
=
ntohs
(
l
->
L
);
*
mac_subheader_len
=
sizeof
(
*
l
);
*
mac_ce_len
=
ntohs
(
l
->
L
);
}
else
{
*
mac_subheader_len
=
sizeof
(
*
s
);
*
mac_ce_len
=
s
->
L
;
*
mac_subheader_len
=
sizeof
(
*
s
);
*
mac_ce_len
=
s
->
L
;
}
}
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
288c29da
...
...
@@ -2092,7 +2092,7 @@ uint8_t get_downlink_ack(NR_UE_MAC_INST_t *mac,
pucch
->
is_common
=
current_harq
->
is_common
;
current_harq
->
active
=
false
;
current_harq
->
ack_received
=
false
;
LOG_D
(
PHY
,
"%
d.%
d Sent %d ack on harq pid %d
\n
"
,
frame
,
slot
,
current_harq
->
ack
,
dl_harq_pid
);
LOG_D
(
PHY
,
"%
4d.%2
d Sent %d ack on harq pid %d
\n
"
,
frame
,
slot
,
current_harq
->
ack
,
dl_harq_pid
);
}
}
}
...
...
@@ -3497,7 +3497,7 @@ void nr_ue_process_mac_pdu(nr_downlink_indication_t *dl_info,
if
(
pdu_len
<
sizeof
(
NR_MAC_SUBHEADER_SHORT
))
return
;
getMacLen
(
pduP
,
&
mac_len
,
&
mac_subheader_len
);
LOG_D
(
NR_MAC
,
"[UE %d]
Frame %d : DLSCH -> DL-DTCH %d (gNB %d, %d bytes)
\n
"
,
module_idP
,
frameP
,
rx_lcid
,
gNB_index
,
mac_len
);
LOG_D
(
NR_MAC
,
"[UE %d]
%4d.%2d : DLSCH -> DL-DTCH %d (gNB %d, %d bytes)
\n
"
,
module_idP
,
frameP
,
slot
,
rx_lcid
,
gNB_index
,
mac_len
);
#if defined(ENABLE_MAC_PAYLOAD_DEBUG)
LOG_T
(
MAC
,
"[UE %d] First 32 bytes of DLSCH :
\n
"
,
module_idP
);
...
...
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