From e0f509841c8b33aa4eb0ca327300317d58de694b Mon Sep 17 00:00:00 2001
From: Cedric Roux <cedric.roux@eurecom.fr>
Date: Mon, 6 Jan 2020 12:45:37 +0100
Subject: [PATCH] hotfix: fix value of MAX_MOBILES_PER_ENB

set MAX_MOBILES_PER_ENB to 4, to be same value as NUMBER_OF_UE_MAX.
Maybe we should set NUMBER_OF_UE_MAX to 16 instead?
---
 openair2/COMMON/platform_constants.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/openair2/COMMON/platform_constants.h b/openair2/COMMON/platform_constants.h
index ec257f5ceb..4c4348dce9 100644
--- a/openair2/COMMON/platform_constants.h
+++ b/openair2/COMMON/platform_constants.h
@@ -81,9 +81,9 @@
       #define MAX_eNB                      2
       #define MAX_gNB                      2
     #else
-      #define MAX_MOBILES_PER_ENB         16
-      #define MAX_MOBILES_PER_ENB_NB_IoT  16
-      #define MAX_MOBILES_PER_GNB         16
+      #define MAX_MOBILES_PER_ENB         4
+      #define MAX_MOBILES_PER_ENB_NB_IoT  4
+      #define MAX_MOBILES_PER_GNB         4
       #define MAX_eNB                      2
       #define MAX_gNB                      2
     #endif
-- 
2.26.2