Farhad H. P. Shirvan has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/33835 )
Change subject: Fixed `mnc` encoding ......................................................................
Fixed `mnc` encoding
According to 3GPP TS 24.008 section 10.5.5.36 PLMN identity of the CN operator
Change-Id: I400435abfa8b67da886fc39c801e1abba39725bf --- M pySim/utils.py 1 file changed, 12 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/35/33835/1
diff --git a/pySim/utils.py b/pySim/utils.py index c25560c..735468e 100644 --- a/pySim/utils.py +++ b/pySim/utils.py @@ -413,7 +413,7 @@ if len(mnc) == 0: mnc = "FFF" elif len(mnc) == 1: - mnc = "F0" + mnc + mnc = "0" + mnc + "F" elif len(mnc) == 2: mnc += "F"