diff options
-rw-r--r-- | drivers/isimodem/debug.c | 1 | ||||
-rw-r--r-- | drivers/isimodem/info.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/isimodem/debug.c b/drivers/isimodem/debug.c index c14acc23..10d0201b 100644 --- a/drivers/isimodem/debug.c +++ b/drivers/isimodem/debug.c @@ -481,6 +481,7 @@ const char *info_message_id_name(enum info_message_id value) const char *info_subblock_name(enum info_subblock value) { switch (value) { + _(INFO_SB_MODEMSW_VERSION); _(INFO_SB_PRODUCT_INFO_NAME); _(INFO_SB_PRODUCT_INFO_MANUFACTURER); _(INFO_SB_SN_IMEI_PLAIN); diff --git a/drivers/isimodem/info.h b/drivers/isimodem/info.h index bdf15964..60425bfc 100644 --- a/drivers/isimodem/info.h +++ b/drivers/isimodem/info.h @@ -27,6 +27,8 @@ extern "C" { #endif #define PN_PHONE_INFO 0x1B +#define PN_MODEM_INFO 0xC5 + #define PN_EPOC_INFO 98 #define INFO_TIMEOUT 5 @@ -50,6 +52,7 @@ enum info_message_id { }; enum info_subblock { + INFO_SB_MODEMSW_VERSION = 0x00, INFO_SB_PRODUCT_INFO_NAME = 0x01, INFO_SB_PRODUCT_INFO_MANUFACTURER = 0x07, INFO_SB_SN_IMEI_PLAIN = 0x41, |