aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-02-01gsm: fix listing SMS messages in text modeDan Williams
Even though we don't parse them correctly yet, at least send the right command for listing them.
2012-02-01gsm: fix setting PDU mode for SMS messagesDan Williams
Stupid signed/unsigned mistake.
2012-02-01test: pretty-print SMS messages in sms-get.pyDan Williams
2012-02-01core: fix warning about MMModemTime interface initializationDan Williams
The MMModemTime interface was getting initialized more than once.
2012-01-27build: more libwmc and libqcdm standalone fixesDan Williams
Make it pass distcheck.
2012-01-27time: implement in iceraThomas Tuttle
Signed-off-by: Thomas Tuttle <ttuttle@chromium.org>
2012-01-27time: poll for timezoneThomas Tuttle
Signed-off-by: Thomas Tuttle <ttuttle@chromium.org>
2012-01-27time: implement ModemTime in ModemBaseThomas Tuttle
Signed-off-by: Thomas Tuttle <ttuttle@chromium.org>
2012-01-26test: add SMS get example/testDan Williams
2012-01-26test: add missing examples to Makefile.amDan Williams
2012-01-26test: rename SMS send exampleDan Williams
2012-01-25api: add Modem.Time introspection XMLThomas Tuttle
Signed-off-by: Thomas Tuttle <ttuttle@chromium.org>
2012-01-25time: implement MMModemTime boilerplateThomas Tuttle
Signed-off-by: Thomas Tuttle <ttuttle@chromium.org>
2012-01-25api: add firmware interface XML file to introspection/Makefile.amThomas Tuttle
Signed-off-by: Thomas Tuttle <ttuttle@chromium.org>
2012-01-25trivial: sort introspection/Makefile.am and all.xmlThomas Tuttle
To make things neater, sort the files listed in instrospection's Makefile alphabetically, and sort the files listed in all.xml alphabetically within logical groups. Signed-off-by: Thomas Tuttle <ttuttle@chromium.org>
2012-01-24qcdm: fix some build errors when building standaloneDan Williams
2012-01-24wmc: allow building libwmc standaloneDan Williams
2012-01-23decode: update WMC for DEVICE_INFO changesDan Williams
2012-01-23wmc: harmonize buffer dumper with decode.pyDan Williams
Makes it easier to compare the output.
2012-01-23wmc: decode more of DEVICE_INFODan Williams
CDMA MIN, home SID, PRL & ERI version
2012-01-23decode: fix WMC decoder for PC5740 dumpsDan Williams
2012-01-23wmc: add FIELD_TEST commandDan Williams
UML290 and UML190 both respond to the command but return all zeros, while the PC5740 returns valid data.
2012-01-23decode: add another USB functionDan Williams
2012-01-23core: fix copy & paste errorDan Williams
2012-01-23wmc: fix compile errorDan Williams
2012-01-23wmc: add LTE only global mode defineDan Williams
2012-01-23wmc: fix init commandDan Williams
Actually read what struct tm contains and use it correctly, and fix the init command struct size.
2012-01-23wmc: fix segfault in testcaseDan Williams
2012-01-23ussd: ensure coded string is valid before stripping quotesAleksander Morgado
2012-01-23ussd: plug a leakAleksander Morgado
2012-01-23wmc: fix compilation error in testsAleksander Morgado
g_print() expects format + arguments; or compilation will fail when -Werror=format-security being used.
2012-01-21wmc: fix up for recent INIT and DEVICE_INFO changesDan Williams
Send current time to modem during init, and don't try to grab MCC/MNC where its not supported.
2012-01-21decode: fix some formattingDan Williams
2012-01-21decode: update for WMC timestampsDan Williams
2012-01-21wmc: update INIT and NETWORK_INFO commands with timestampDan Williams
2012-01-21decode: parse URB timestamps tooDan Williams
2012-01-21decode: updates all aroundDan Williams
Rewrite packet handling so packets can span multiple USB URBs (which sometimes happens with WMC) and also add a bunch more WMC decoding stuff.
2012-01-21wmc: more protocol updatesDan Williams
2012-01-21qcdm: clarify IMxI conversions a bit; fix up WCDMA L1 statesDan Williams
2012-01-20decode: decode more WMC commands and fix some command namesDan Williams
2012-01-20wmc: add some more global mode definesDan Williams
2012-01-20decode: add another ignored packet typeDan Williams
2012-01-20wmc: prettier printing of serial stream and WMC packetsDan Williams
2012-01-20wmc: global mode command is 3 bytes not 2Dan Williams
2012-01-19wmc: add some more commands and fix up network infoDan Williams
Add operator commands, and fix up the network info response handling for GSM/WCDMA capable devices like the UML190 when it's in GSM/WCDMA mode.
2012-01-19wmc: make warn macros more usefulDan Williams
2012-01-19wmc: fix stringification of wmc_xxx_if_fail() macrosDan Williams
Actually reading about preprocessor concatenation and stringification helps.
2012-01-19wmc: add Access Technology/Service definitions and Global Mode stuffDan Williams
Comparing dumps from UML190 in different modes, UML290, and PC5740 revealed what the 'service' bit was, which matches up nicely with the SERVICE_* strings in the Windows connection manager DLLs if you interpret them in reverse numerical order. For the global mode stuff, looking at USB wire captures shows that C8 03 and C8 04 get used right before the NETWORK_INFO (C8 0B) shows access technology changes, which means they are probably the commands that switch global mode around.
2012-01-19decode: fix tab/space confusion in analyze.pyDan Williams
2012-01-19wmc: STATUS is appears to be NETWORK_INFODan Williams
So rename it in various places.