From 8f892fbbe855154becf9c7a7ef3d5c44adc616f1 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 5 Jun 2021 10:12:43 +0200 Subject: [PATCH] ts_102_221: Add construct for contents of EF.UMPC Change-Id: I7c63ccca90ab34b0d6ac6c990eeb53279ef2cd8d --- pySim/ts_102_221.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pySim/ts_102_221.py b/pySim/ts_102_221.py index 38a69de6..36659394 100644 --- a/pySim/ts_102_221.py +++ b/pySim/ts_102_221.py @@ -18,7 +18,8 @@ along with this program. If not, see . """ from pytlv.TLV import * -from struct import pack, unpack +from construct import * +from pySim.construct import * from pySim.utils import * from pySim.filesystem import * from bidict import bidict @@ -599,7 +600,8 @@ class EF_ARR(LinFixedEF): class EF_UMPC(TransparentEF): def __init__(self, fid='2f08', sfid=0x08, name='EF.UMPC', desc='UICC Maximum Power Consumption'): super().__init__(fid, sfid=sfid, name=name, desc=desc, size={5,5}) - + addl_info = FlagsEnum(Byte, req_inc_idle_current=1, support_uicc_suspend=2) + self._construct = Struct('max_current_mA'/Int8ub, 't_op_s'/Int8ub, 'addl_info'/addl_info) class CardProfileUICC(CardProfile):