Skip to content

Commit

Permalink
Add option to specify MNC length in non-batch programming scnearios
Browse files Browse the repository at this point in the history
Change-Id: Ied56a28d46a4c9c0c516d73fa257daeef7b50b61
  • Loading branch information
herlesupreeth authored and laf0rge committed May 11, 2020
1 parent d572ede commit fc83e43
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pySim-prog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']",
)
Expand Down

0 comments on commit fc83e43

Please sign in to comment.