aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-15api: include '3gpp' prefix for LAC/CI location, instead of 'gsm'Aleksander Morgado
2012-03-15broadband-modem: enable/disable the Location interfaceAleksander Morgado
2012-03-15broadband-modem: load default location reporting capabilitiesAleksander Morgado
Currently, only LAC/CI if the modem has 3GPP capabilities.
2012-03-15iface-modem-location: handle enabling/disabling location gatheringAleksander Morgado
2012-03-15broadband-modem: implement the Location interfaceAleksander Morgado
2012-03-15api,dbus: we won't enable the modem if we're enabling locationAleksander Morgado
2012-03-15iface-modem-location: new interface for Location-related stuffAleksander Morgado
2012-03-15docs: include initial state machine documentationAleksander Morgado
2012-03-15docs: improved DBus interface documentationAleksander Morgado
2012-03-15cli: add CDMA-related option group, and enable activation requestAleksander Morgado
2012-03-15libmm-glib: implement CDMA activation requestAleksander Morgado
2012-03-15api,header: treat CDMA activation errors as any other errorAleksander Morgado
2012-03-15api,dbus: don't return immediate CDMA activation errorsAleksander Morgado
Seems like an unnecessary complication, as the client anyway needs to handle asynchronously reported errors.
2012-03-15cinterion: avoid after-power-up stepAleksander Morgado
Split the after power up step into: * querying supported functionality status during the first power-down request. * querying supported networks during supported modes loading.
2012-03-15plugin-base: use MM_TYPE_POINTER_ARRAY for custom init callbacksAleksander Morgado
2012-03-15core: new boxed type for NULL-terminated array of gpointersAleksander Morgado
2012-03-15plugin-base: use MM_TYPE_UINT16_ARRAY for vendor/product ID propertiesAleksander Morgado
2012-03-15core: new boxed type for 0-terminated array of guint16 valuesAleksander Morgado
2012-03-15plugin-base: use GStrv boxed types for string array propertiesAleksander Morgado
2012-03-15nokia: plugin fully ported to the new codebaseAleksander Morgado
2012-03-15nokia: include port type hintsAleksander Morgado
Ported commit 44194ac to the new codebase.
2012-03-15bearer-cdma: use #777 as default number to dial when none given explicitlyAleksander Morgado
2012-03-15broadband-modem: redefine generic supported mode loading implementationAleksander Morgado
* assume CDMA1x is 2G * consider CS/PS/CDMA1x/EVDO network support flags specified by the plugins
2012-03-15broadband-modem: we can expect non-LTE 3GPP+CDMA modemsAleksander Morgado
2012-03-15core,plugins: handle missing `last_command' flagsAleksander Morgado
These didn't get compilation errors when `MMBaseModemAtResponseProcessor' was changed, as we're doing an explicit casting.
2012-03-15cli: print properties only if registered in the specific network(s)Aleksander Morgado
If registered in the 3GPP network, print 3GPP-specific properties; and if registered in a CDMA network, print CDMA-specific properties.
2012-03-15cli: include CDMA-specific properties in the simple status reportAleksander Morgado
2012-03-15iface-modem-cdma: bind CDMA-specific properties for the simple statusAleksander Morgado
2012-03-15libmm-glib: include CDMA-specific items in the simple status propertiesAleksander Morgado
2012-03-15libmm-common: include CDMA-specific items in the simple propertiesAleksander Morgado
2012-03-15api,dbus: include CDMA-specific properties in the simple status queryAleksander Morgado
2012-03-15api,dbus: prefix with 'm3gpp' the 3GPP-specific entries returned in the ↵Aleksander Morgado
simple status Note that we cannot have properties starting with a digit :-/
2012-03-15libmm-glib: prefix with '3gpp' the 3GPP-specific simple status propertiesAleksander Morgado
2012-03-15libmm-common: prefix with '3gpp' the 3GPP-specific simple propertiesAleksander Morgado
2012-03-15iface-modem-simple: new connection logic when more than one bearer aroundAleksander Morgado
For mixed 3GPP+CDMA modems, we first try to connect the 3GPP bearers, and then the CDMA ones.
2012-03-15libmm-common: allow duplicating the bearer properties objectAleksander Morgado
2012-03-15broadband-modem: on mixed CDMA+LTE modems, guess which kind of bearer to createAleksander Morgado
2012-03-15iface-modem-simple: build 3GPP+CDMA registration check logicAleksander Morgado
For mixed 3GPP+CDMA modems, we check registrations in both 3GPP and CDMA networks, and we stop checks when we find ourselves registered in either one or the other.
2012-03-15iface-modem-cdma: let caller decide the maximum registration timeoutAleksander Morgado
2012-03-15iface-modem-3gpp: let caller decide the maximum registration timeoutAleksander Morgado
2012-03-15broadband-modem: implement CDMA registration methodAleksander Morgado
Will wait up to 60s to be registered in the CDMA network.
2012-03-15iface-modem-cdma: provide a method to register in the CDMA networkAleksander Morgado
This will really not be like the 3GPP method. In 3GPP we can request to do auto-registration, or request to lock to a specific Operator. Once that done, we wait for unsolicited registration messages and also perform peridic registration checks. In the case of the CDMA network, the registration seems to be always automatic. Therefore, this method to register in the CDMA network will just make sure that we got registered, by waiting up to N seconds while doing periodic registration checks.
2012-03-15cli: split the command to register in a 3GPP networkAleksander Morgado
We provide `--3gpp-register-home' to request automatic registration. This will try to register in the home network if available; and if not available, in any other network being allowed. We also provide `--3gpp-register-in-operator' to try to lock the registration in the network of a given specific operator, specified by MCCMNC.
2012-03-15api,dbus: MCCMNC identifies the operator (country+network), not just the networkAleksander Morgado
MCCMNC = MCC (Mobile Country Code) + MNC (Mobile Network Code)
2012-03-15broadband-modem: refactor the code a bitAleksander Morgado
* Include interface-specific prefixes in methods implemented (e.g. 'modem_3gpp_' for all 3GPP interface method implementations. * Pack together in the private struct variables required in the implementation of a given interface.
2012-03-15broadband-modem: set auto registration with AT+COPS=0Aleksander Morgado
This is, remove the use of "AT+COPS=0,,". The extra commas break its use in a Nokia C7, and the proper/clean way to do it anyway is to avoid using the commas.
2012-03-15cli: print CDMA-related info from the modemAleksander Morgado
2012-03-15cli: new helper to get the CDMA registration state stringAleksander Morgado
2012-03-15libmm-glib: handle the CDMA interfaceAleksander Morgado
2012-03-15manager: make sure modems get exported when all their ports are finishedDan Williams
My LG Rumor2 phone (ttyACM0 - AT, ttyUSB0 - QCDM) was never getting exported after the QCDM port finished probing. Not entirely sure why, but we should check whether we need to export a modem or not any time a port gets grabbed.