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
wangjie
OpenXG-RAN
Commits
449da9ac
Commit
449da9ac
authored
Jan 23, 2019
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding detection of multiple PSS.
parent
f2d5cfae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
84 additions
and
50 deletions
+84
-50
openair1/PHY/NR_UE_TRANSPORT/nr_pbch.c
openair1/PHY/NR_UE_TRANSPORT/nr_pbch.c
+4
-4
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
+62
-27
openair2/RRC/NR_UE/rrc_UE.c
openair2/RRC/NR_UE/rrc_UE.c
+18
-19
No files found.
openair1/PHY/NR_UE_TRANSPORT/nr_pbch.c
View file @
449da9ac
...
...
@@ -712,10 +712,10 @@ int nr_rx_pbch( PHY_VARS_NR_UE *ue,
#ifdef DEBUG_PBCH
printf
(
"xtra_byte %x payload %x
\n
"
,
xtra_byte
,
payload
);
for
(
i
=
0
;
i
<
(
NR_POLAR_PBCH_PAYLOAD_BITS
>>
3
);
i
++
){
// printf("unscrambling pbch_a[%d] = %x \n", i,pbch_a[i]);
printf
(
"[PBCH] decoder payload[%d] = %x
\n
"
,
i
,
decoded_output
[
i
]);
}
for
(
int
i
=
0
;
i
<
(
NR_POLAR_PBCH_PAYLOAD_BITS
>>
3
);
i
++
){
// printf("unscrambling pbch_a[%d] = %x \n", i,pbch_a[i]);
printf
(
"[PBCH] decoder payload[%d] = %x
\n
"
,
i
,
decoded_output
[
i
]);
}
#endif
ue
->
dl_indication
.
rx_ind
=
&
ue
->
rx_ind
;
// hang on rx_ind instance
...
...
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
View file @
449da9ac
...
...
@@ -803,25 +803,47 @@ static inline int64_t abs64(int64_t x)
#define DOT_PRODUCT_SCALING_SHIFT (17)
int
max3
(
int64_t
a
,
int64_t
b
,
int64_t
c
)
{
if
(
a
>
b
)
{
if
(
a
>
c
)
{
return
(
0
);
}
else
{
return
(
2
);
}
}
else
{
if
(
b
>
c
)
{
return
(
1
);
}
else
{
return
(
2
);
}
}
}
int
pss_search_time_nr
(
int
**
rxdata
,
///rx data in time domain
NR_DL_FRAME_PARMS
*
frame_parms
,
int
*
eNB_id
)
{
unsigned
int
n
,
ar
,
peak_position
,
pss_source
;
int64_t
peak_value
;
uint8_t
L_max
=
4
;
unsigned
int
m
,
n
,
ar
,
n_peaks
=
0
;
unsigned
int
peak_position
[
3
*
L_max
],
pss_source
[
3
*
L_max
];
int64_t
peak_value
,
threshold
;
int64_t
result
;
int64_t
avg
[
NUMBER_PSS_SEQUENCE
];
uint8_t
found_peak
=
0
;
unsigned
int
length
=
(
NR_NUMBER_OF_SUBFRAMES_PER_FRAME
*
frame_parms
->
samples_per_subframe
);
/* 1 frame for now, it should be 2 TODO_NR */
AssertFatal
(
length
>
0
,
"illegal length %d
\n
"
,
length
);
for
(
int
i
=
0
;
i
<
NUMBER_PSS_SEQUENCE
;
i
++
)
AssertFatal
(
pss_corr_ue
[
i
]
!=
NULL
,
"pss_corr_ue[%d] not yet allocated! Exiting.
\n
"
,
i
);
peak_value
=
0
;
peak_position
=
0
;
pss_source
=
0
;
for
(
int
i
=
0
;
i
<
4
;
i
++
)
{
peak_position
[
i
]
=
length
;
//max possible value
pss_source
[
i
]
=
0
;
}
int
maxval
=
0
;
for
(
int
i
=
0
;
i
<
2
*
(
frame_parms
->
ofdm_symbol_size
);
i
++
)
{
...
...
@@ -844,9 +866,9 @@ int pss_search_time_nr(int **rxdata, ///rx data in time domain
memset
(
pss_corr_ue
[
pss_index
],
0
,
length
*
sizeof
(
int64_t
));
}
for
(
n
=
0
;
n
<
length
;
n
+=
4
)
{
//
for
(
int
pss_index
=
0
;
pss_index
<
NUMBER_PSS_SEQUENCE
;
pss_index
++
)
{
for
(
int
pss_index
=
0
;
pss_index
<
NUMBER_PSS_SEQUENCE
;
pss_index
++
)
{
for
(
n
=
0
;
n
<
length
;
n
+=
4
)
{
//
if
(
n
<
(
length
-
frame_parms
->
ofdm_symbol_size
))
{
...
...
@@ -870,27 +892,40 @@ int pss_search_time_nr(int **rxdata, ///rx data in time domain
/* calculate the absolute value of sync_corr[n] */
avg
[
pss_index
]
+=
pss_corr_ue
[
pss_index
][
n
];
if
(
pss_corr_ue
[
pss_index
][
n
]
>
peak_value
)
{
peak_value
=
pss_corr_ue
[
pss_index
][
n
];
peak_position
=
n
;
pss_source
=
pss_index
;
#ifdef DEBUG_PSS_NR
printf
(
"pss_index %d: n %6d peak_value %15llu
\n
"
,
pss_index
,
n
,
(
unsigned
long
long
)
pss_corr_ue
[
pss_index
][
n
]);
#endif
}
}
avg
[
pss_index
]
/=
(
length
/
4
);
}
threshold
=
10
*
avg
[
max3
(
avg
[
0
],
avg
[
1
],
avg
[
2
])];
peak_value
=
threshold
;
for
(
n
=
0
;
n
<
length
;
n
+=
4
)
{
m
=
max3
(
pss_corr_ue
[
0
][
n
],
pss_corr_ue
[
1
][
n
],
pss_corr_ue
[
2
][
n
]);
if
(
pss_corr_ue
[
m
][
n
]
>
peak_value
)
{
peak_value
=
pss_corr_ue
[
m
][
n
];
peak_position
[
n_peaks
]
=
n
;
pss_source
[
n_peaks
]
=
m
;
found_peak
=
1
;
}
if
((
peak_position
[
n_peaks
]
+
4
*
(
frame_parms
->
ofdm_symbol_size
+
frame_parms
->
nb_prefix_samples
)
<
n
)
&&
(
found_peak
==
1
))
{
//#ifdef DEBUG_PSS_NR
printf
(
"peak %d found at pss_index %d, n %6d, peak_value %15llu
\n
"
,
n_peaks
,
pss_source
[
n_peaks
],
peak_position
[
n_peaks
],
(
unsigned
long
long
)
pss_corr_ue
[
pss_source
[
n_peaks
]][
peak_position
[
n_peaks
]]);
//#endif
peak_value
=
threshold
;
found_peak
=
0
;
n_peaks
++
;
//if (n_peaks==L_max) break;
}
}
for
(
int
pss_index
=
0
;
pss_index
<
NUMBER_PSS_SEQUENCE
;
pss_index
++
)
avg
[
pss_index
]
/=
(
length
/
4
);
*
eNB_id
=
pss_source
;
LOG_I
(
PHY
,
"[UE] nr_synchro_time: Sync source = %d, Peak found at pos %d, val = %llu (%d dB) avg %d dB
\n
"
,
pss_source
,
peak_position
,
(
unsigned
long
long
)
peak_value
,
dB_fixed64
(
peak_value
),
dB_fixed64
(
avg
[
pss_source
]));
if
(
peak_value
<
5
*
avg
[
pss_source
])
return
(
-
1
);
*
eNB_id
=
pss_source
[
0
];
//LOG_I(PHY,"[UE] nr_synchro_time: Sync source = %d, Peak found at pos %d, val = %llu (%d dB) avg %d dB\n", pss_source, peak_position, (unsigned long long)peak_value, dB_fixed64(peak_value),dB_fixed64(avg[pss_source]));
#ifdef DBG_PSS_NR
...
...
@@ -907,6 +942,6 @@ int pss_search_time_nr(int **rxdata, ///rx data in time domain
#endif
return
(
peak_position
);
return
(
peak_position
[
0
]
);
}
openair2/RRC/NR_UE/rrc_UE.c
View file @
449da9ac
...
...
@@ -322,25 +322,24 @@ int8_t nr_rrc_ue_decode_NR_BCCH_BCH_Message(
(
const
void
*
)
bufferP
,
buffer_len
);
if
(
bcch_message
->
message
.
choice
.
mib
->
systemFrameNumber
.
buf
!=
0
){
if
((
dec_rval
.
code
!=
RC_OK
)
||
(
dec_rval
.
consumed
==
0
))
{
printf
(
"NR_CellGroupConfig decode error
\n
"
);
for
(
i
=
0
;
i
<
buffer_len
;
i
++
){
printf
(
"%02x "
,
bufferP
[
i
]);
}
printf
(
"
\n
"
);
// free the memory
SEQUENCE_free
(
&
asn_DEF_NR_BCCH_BCH_Message
,
(
void
*
)
bcch_message
,
1
);
return
-
1
;
}
// link to rrc instance
mib
=
bcch_message
->
message
.
choice
.
mib
;
//memcpy( (void *)mib,
// (void *)&bcch_message->message.choice.mib,
// sizeof(NR_MIB_t) );
nr_rrc_mac_config_req_ue
(
0
,
0
,
0
,
mib
,
NULL
,
NULL
,
NULL
);
if
((
dec_rval
.
code
!=
RC_OK
)
||
(
dec_rval
.
consumed
==
0
))
{
printf
(
"NR_BCCH_BCH decode error
\n
"
);
for
(
i
=
0
;
i
<
buffer_len
;
i
++
){
printf
(
"%02x "
,
bufferP
[
i
]);
}
printf
(
"
\n
"
);
// free the memory
SEQUENCE_free
(
&
asn_DEF_NR_BCCH_BCH_Message
,
(
void
*
)
bcch_message
,
1
);
return
-
1
;
}
else
{
// link to rrc instance
mib
=
bcch_message
->
message
.
choice
.
mib
;
//memcpy( (void *)mib,
// (void *)&bcch_message->message.choice.mib,
// sizeof(NR_MIB_t) );
nr_rrc_mac_config_req_ue
(
0
,
0
,
0
,
mib
,
NULL
,
NULL
,
NULL
);
}
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