Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-29 | mmcli: prefix all NMEA traces in order to get a pretty print | Aleksander Morgado | |
2012-03-29 | mmcli: new actions to request gps-specific or all available locations | Aleksander Morgado | |
2012-03-29 | mmcli: allow multiple location source enabling/disabling commands | Aleksander Morgado | |
For example, we do allow: mmcli -m 0 --enable-location-gps-nmea --disable-location-gps-raw All the options get merged into a single Setup() call in the Location interface. | |||
2012-03-29 | mmcli: new `--location-enable-gps' and `--location-disable-gps' actions | Aleksander Morgado | |
2012-03-29 | mmcli: new `--location-status' to show supported and enabled location sources | Aleksander Morgado | |
2012-03-29 | location: rework to allow multiple location sources | Aleksander Morgado | |
Location sources can now be enabled or disabled by using the mask of sources given in Setup() (similar previous Enable()). | |||
2012-03-26 | mmcli: abort certain operations if modem is unlocked | Aleksander Morgado | |
Do not try to perform feature/capability specific actions if we're still unlocked, as the modem didn't yet export the feature/capability specific interface. The only interfaces expected while modem is unlocked are the Modem and Simple interfaces, as well as the SIM interface in the SIM object, of course. | |||
2012-03-26 | mmcli: fix alignment of properties in IP config output | Aleksander Morgado | |
2012-03-26 | mmcli: ensure the modem exports the Simple interface before trying to use it | Aleksander Morgado | |
2012-03-16 | mmcli: fix looking for unexisting SMS | Aleksander Morgado | |
We need to ensure we iterate over all modems available. | |||
2012-03-16 | mmcli: fix looking for unexisting bearers | Aleksander Morgado | |
We need to ensure we iterate over all modems available. | |||
2012-03-16 | cli: don't assume every modem exposes the Messaging interface | Aleksander Morgado | |
2012-03-16 | mmcli: new Time-specific actions | Aleksander Morgado | |
2012-03-16 | mmcli: print own numbers in modem info | Aleksander Morgado | |
2012-03-16 | libmm-common: `MMSimpleStatus' won't be considered internal any more | Aleksander Morgado | |
Renamed `MMCommonSimpleProperties' to `MMSimpleStatus', and removed the `MMSimpleStatusProperties' provided in libmm-glib. We'll just use the original one from libmm-common always. | |||
2012-03-16 | libmm-common: `MMLocation3gpp' won't be considered internal any more | Aleksander Morgado | |
Renamed `MMCommonLocation3gpp' to `MMLocation3gpp', and removed the `MMModemLocation3gpp' provided in libmm-glib. We'll just use the original one from libmm-common always. | |||
2012-03-16 | libmm-common: `MMSimpleConnectProperties' won't be considered internal any more | Aleksander Morgado | |
Renamed `MMCommonConnectProperties' to `MMSimpleConnectProperties', and removed the `MMModemSimpleConnectProperties' provided in libmm-glib. We'll just use the original one from libmm-common always. | |||
2012-03-16 | api: `UnlockRetries' will reply a list of per-lock retry counts | Aleksander Morgado | |
Equivalent to `PinRetryCount' in the previous API. We don't have an additional property for the retry count of the current lock, as it really is duplicating information. | |||
2012-03-16 | cli: print list of enabled facility locks | Aleksander Morgado | |
2012-03-16 | api,dbus: rename `AllowedBands' to just `Bands' | Aleksander Morgado | |
ModemManager will load: 1) The list of supported bands. Note that this doesn't mean that any possible combination of bands is supported, as modems may support only specific combinations, but at least gives a rough idea of what the modem is capable of handling. 2) The list of CURRENT bands. There is no such "Allowed" bands, as we do with modes, modems will have a specific set of bands being currently used, which will be reported in the `Bands' property. If the modem allows modifying the list of bands to use, this can be done with the `SetBands()' method. If the modem doesn't support using a specific combination of bands, this method will report an error. | |||
2012-03-15 | cli: print the IP timeout value from the bearer | Aleksander Morgado | |
2012-03-15 | api,dbus: new `Command' method in the API to send arbitrary AT commands | Nathan Williams | |
BUG=chromium-os:25348 TEST="mmcli -m 0 --command='E0'" Change-Id: I320587560fde5780f9d5a4998e32364d36a71ed7 | |||
2012-03-15 | cli: include storage when printing SMS info | Aleksander Morgado | |
2012-03-15 | cli: new `--store' action to store SMS messages | Aleksander Morgado | |
2012-03-15 | api,dbus: remove the option to send the SMS in the Create() call | Aleksander Morgado | |
An SMS must be first created with the Messaging interface, and then sent using the Send() method from the SMS-specific interface. | |||
2012-03-15 | cli: ensure EOL is added at every error message | Aleksander Morgado | |
2012-03-15 | cli: avoid unneeded refs when synchronously looking for bearer/sms/sim | Aleksander Morgado | |
2012-03-15 | cli: added Messaging-specific actions | Aleksander Morgado | |
2012-03-15 | cli: added SMS-specific actions | Aleksander Morgado | |
2012-03-15 | cli: setup to work with SMS objects | Aleksander Morgado | |
2012-03-15 | cli: fix help, bearers and SIMs can be specified also by index | Aleksander Morgado | |
2012-03-15 | cli: fail if requesting location actions and modem doesn't handle locations | Aleksander Morgado | |
2012-03-15 | cli: fail if requesting CDMA actions and modem is not CDMA | Aleksander Morgado | |
2012-03-15 | cli: include 3GPP-USSD specific actions | Aleksander Morgado | |
2012-03-15 | cli: fail if requesting 3GPP actions and modem is not 3GPP | Aleksander Morgado | |
2012-03-15 | cli: allow specifying bearers and SIMs by index | Aleksander Morgado | |
So, these two are equivalent: $> mmcli -b 0 $> mmcli -b /org/freedesktop/ModemManager1/Bearer/0 and also this two: $> mmcli -s 0 $> mmcli -s /org/freedesktop/ModemManager1/SIM/0 | |||
2012-03-15 | cli: IP config getters return newly created objects | Aleksander Morgado | |
2012-03-15 | cli: remove `--connect-with-number' option, no longer needed | Aleksander Morgado | |
2012-03-15 | cli: use new enums/flags string getters/builders | Aleksander Morgado | |
2012-03-15 | cli: include Location-related actions | Aleksander Morgado | |
2012-03-15 | cli: add CDMA-related option group, and enable activation request | Aleksander Morgado | |
2012-03-15 | cli: 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-15 | cli: include CDMA-specific properties in the simple status report | Aleksander Morgado | |
2012-03-15 | libmm-glib: prefix with '3gpp' the 3GPP-specific simple status properties | Aleksander Morgado | |
2012-03-15 | cli: split the command to register in a 3GPP network | Aleksander 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-15 | cli: print CDMA-related info from the modem | Aleksander Morgado | |
2012-03-15 | cli: new helper to get the CDMA registration state string | Aleksander Morgado | |
2012-03-15 | cli: print Rm protocol in bearer info | Aleksander Morgado | |
2012-03-15 | cli: fix invalid write when completing async operation | Aleksander Morgado | |
Don't use the same context to pass the results to finalize(). | |||
2012-03-15 | cli: use g_list_free_full() when possible | Aleksander Morgado | |