diff --git a/index.html b/index.html index 2f66d1b..83de64c 100644 --- a/index.html +++ b/index.html @@ -3990,6 +3990,16 @@ const CMD_NAMES = { }; const CMD_QUALIFIER_SHORT = { + '01': {0x00:'NAA Init+FC', 0x01:'File Chg', 0x02:'NAA Init+FC', 0x03:'NAA Init', + 0x04:'UICC Reset', 0x05:'App Reset', 0x06:'Sess Reset', 0x07:'SoR', 0x08:'SoR I-WLAN'}, + '10': {0x00:'IfNotBusy', 0x01:'IfNotBusy+Redial', 0x02:'HoldOthers', 0x03:'HoldOthers+Redial', + 0x04:'DiscOthers', 0x05:'DiscOthers+Redial'}, + '15': {0x00:'New', 0x01:'Existing', 0x02:'Close+New'}, + '21': {0x00:'Normal', 0x01:'HighPri', 0x80:'WaitUser'}, + '22': {0x00:'Digits', 0x01:'Alpha', 0x04:'YesNo', 0x08:'ImmDigit'}, + '23': {0x00:'Digits+Echo', 0x01:'Alpha+Echo', 0x04:'NoEcho'}, + '24': {0x00:'Normal', 0x02:'Help', 0x04:'DefaultItem', 0x80:'Nav'}, + '25': {0x00:'Normal', 0x04:'Help', 0x80:'Nav'}, '26': {0x00:'Loc', 0x01:'IMEI', 0x02:'NMR', 0x03:'Time', 0x04:'Lang', 0x05:'TA', 0x06:'AccTech', 0x08:'IMEISV', 0x09:'Search', 0x0A:'Batt', 0x0C:'WSID', 0x0D:'BCInfo', 0x0E:'MultiAT', 0x0F:'MultiLoc', 0x10:'MultiNMR', @@ -4012,15 +4022,19 @@ async function pysimProactiveLogRender() { let qual = ''; if (e.qualifier) { const qs = CMD_QUALIFIER_SHORT[e.type_hex]; - if (qs) qual = ' [' + (qs[parseInt(e.qualifier,16)] || '0x'+e.qualifier.toUpperCase()) + ']'; - else qual = ' [0x' + e.qualifier.toUpperCase() + ']'; + if (qs) { + const qv = qs[parseInt(e.qualifier,16)]; + if (qv) qual = ' [' + qv + ']'; + } } - html += '