Add option to specify MNC length in non-batch programming scnearios

Change-Id: Ied56a28d46a4c9c0c516d73fa257daeef7b50b61
This commit is contained in:
Supreeth Herle
2020-05-06 11:48:46 +02:00
committed by laforge
parent d572edef1e
commit fc83e43637

View File

@@ -106,6 +106,11 @@ def parse_options():
help="Mobile Network Code [default: %default]",
default=55,
)
parser.add_option("--mnclen", dest="mnclen", type="choice",
help="Length of Mobile Network Code [default: %default]",
default=2,
choices=[2, 3],
)
parser.add_option("-m", "--smsc", dest="smsc",
help="SMSC number (Start with + for international no.) [default: '00 + country code + 5555']",
)