aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcu_vty.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pcu_vty.c')
-rw-r--r--src/pcu_vty.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pcu_vty.c b/src/pcu_vty.c
index 58fea993..1274fbc8 100644
--- a/src/pcu_vty.c
+++ b/src/pcu_vty.c
@@ -464,6 +464,16 @@ DEFUN(cfg_pcu_mcs_max,
else
bts->max_mcs_ul = mcs;
+ /* TODO: Remove this restriction when MCS-5 and above are supported by
+ * the implementation */
+ if (bts->max_mcs_ul > 4) {
+ vty_out(vty,
+ "Limiting the uplink coding scheme to MCS-4, since MCS-5 "
+ "and above are not yet supported in updalink direction.%s",
+ VTY_NEWLINE);
+ bts->max_mcs_ul = 4;
+ }
+
return CMD_SUCCESS;
}