Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/pysim/+/27127
to look at the new patch set (#2).
Change subject: Better decode of EF.UST, EF.EST and EF.IST ......................................................................
Better decode of EF.UST, EF.EST and EF.IST
So far, we only returned an array of service numbers like [ 2, 4, 5, 9 ] which is not very friendly to the human reader.
In EF.SST we already had more verbose decoding including a description of each service. Let's add the same principle to EF.UST, EST and IST
The same output above now looks like this:
{ "1": { "description": "Local Phone Book", "activated": false }, "2": { "description": "Fixed Dialling Numbers (FDN)", "activated": true }, "3": { "description": "Extension 2", "activated": false }, "4": { "description": "Service Dialling Numbers (SDN)", "activated": true }, "5": { "description": "Extension3", "activated": true }, "6": { "description": "Barred Dialling Numbers (BDN)", "activated": false }, "7": { "description": "Extension4", "activated": false }, "9": { "description": "Incoming Call Information (ICI and ICT)", "activated": true } }
Change-Id: I34f64d1043698dc385619b2fdda23cb541675f76 --- M pySim/ts_31_102.py M pySim/ts_31_103.py 2 files changed, 45 insertions(+), 39 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/27/27127/2