Fixed check for valid cell-identity group

This commit is contained in:
Ralf Lindstedt 2019-01-31 21:14:09 +01:00 committed by Andre Puschmann
parent 61f3a55bc5
commit 5c088d75ae
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ bool srslte_N_id_2_isvalid(uint32_t N_id_2) {
}
bool srslte_N_id_1_isvalid(uint32_t N_id_1) {
if (N_id_1 < 169) {
if (N_id_1 < 168) {
return true;
} else {
return false;