aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-03-15manager: print modem debug info as soon as it gets exportedAleksander Morgado
2012-03-15broadband-modem: minor indentation fixesAleksander Morgado
2012-03-15broadband-bearer: avoid double freeAleksander Morgado
Don't free an error which is taken by the async result.
2012-03-15core: don't pass primary port to interface initializationsAleksander Morgado
They will all get it themselves.
2012-03-15broadband-modem: run setup of all ports as first step in initializationAleksander Morgado
This is run always once all ports grabbed and organized.
2012-03-15core: rework port grabbing and organizationAleksander Morgado
Make port roles more flexible. We have modems that do PPP on interfaces other than the primary interface, and that wasn't possible with the old code. So clean up all that logic and move the port organization code into the core so we can reduce code in the plugins. In the new world order, the plugins say whether the port is a QCDM port, an AT port, or ignored. If it's an AT port the plugins get to tag it as primary, secondary, or PPP, or any combination of the 3. This allows for modems where PPP should really be done on the secondary port (Huawei E220, Sierra devices) so that the primary port stays open for command and status. After all ports are grabbed by the generic classes, they get "organized", which assigns various ports to the roles of PRIMARY, SECONDARY, DATA, and QCDM based on specific rules and hints that the plugin provided (which are expressed as MMAtPortFlags). The plugin code is responsible for determining the port hints (ie MMAtPortFlags) at probe time, instead of having a combination of the plugin and the modem class do the job. This simplifies things greatly for the plugins at the expense of more complicated logic in the core. This is the port of commit 96505d42ed62327101dcee7c2bf31177b0bb1c9f to the 06-api branch.
2012-03-15at-serial-port: new AT port specific flagsAleksander Morgado
2012-03-15at-serial-port: no need to pass port type when creating the objectAleksander Morgado
We'll just specify the port is AT, not primary or secondary
2012-03-15qcdm-serial-port: no need to pass port type when creating the objectAleksander Morgado
2012-03-15bearer-list: avoid redefinition of MMBearerLisForeachFuncAleksander Morgado
2012-03-15base-modem: also signal validity when reporting invalidAleksander Morgado
Otherwise the manager won't catch invalid modems failing at initialization.
2012-03-15port: no need for custom enum to string convertersAleksander Morgado
2012-03-15base-modem: use new autogenerated port-enum-string gettersAleksander Morgado
2012-03-15build: private enums don't depend on the public onesAleksander Morgado
2012-03-15build: generate libserial-specific enum typesAleksander Morgado
2012-03-15build: renamed files holding daemon-specific enum typesAleksander Morgado
2012-03-15broadband-modem: always PDU mode preferredAleksander Morgado
2012-03-15sms: specify storage where the SMS is keptAleksander Morgado
2012-03-15iface-modem-messaging: once all messages initially loaded, set default storagesAleksander Morgado
2012-03-15broadband-modem: implement default storage settingsAleksander Morgado
2012-03-15iface-modem-messaging: use defaults when no specific storage specifiedAleksander Morgado
2012-03-15iface-modem-messaging: load initial parts from all available storagesAleksander Morgado
2012-03-15test: new tester for CPMS=? resultsAleksander Morgado
2012-03-15iface-modem-messaging: new method to set preferred SMS storagesAleksander Morgado
2012-03-15broadband-modem: override default preferred mem1/mem2/mem3 storagesAleksander Morgado
2012-03-15iface-modem-messaging: new properties to define preferred mem1/mem2/mem3 ↵Aleksander Morgado
storages
2012-03-15broadband-modem: implement default SMS storage loadingAleksander Morgado
2012-03-15iface-modem-messaging: load supported SMS storages during initializationAleksander Morgado
2012-03-15modem-helpers: new CPMS format result parserAleksander Morgado
2012-03-15sms: implement default sending, either from storage or through the generic cmdAleksander Morgado
2012-03-15sms: don't allow sending received messagesAleksander Morgado
2012-03-15sms: implement default storingAleksander Morgado
2012-03-15sms-part: include the submit-pdu building codeAleksander Morgado
It currently doesn't do multi-part. When do support that, we may end up needing to move all this code to mm-sms.c
2012-03-15broadband-modem: implement the use-pdu-mode flag propertyAleksander Morgado
2012-03-15iface-modem-messaging: handle the flag to use PDU mode as a propertyAleksander Morgado
2012-03-15sms-list: refactor SMS removalAleksander Morgado
If any of the parts couldn't be removed, an error is reported and the SMS is left in the list.
2012-03-15sms: delete() just removes the parts from the storageAleksander Morgado
It's left to the delete() caller to unexport the SMS object from DBus and such.
2012-03-15sms-part: allow reseting part indexAleksander Morgado
so that we can for example, tell the index is INVALID
2012-03-15sms: 'number' and 'text' are mandatory when creating from propertiesAleksander Morgado
2012-03-15api,dbus: remove the option to send the SMS in the Create() callAleksander 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-15broadband-modem: get and use SMS part state when parsing CMGL replyAleksander Morgado
2012-03-15sms: export uncomplete multipart messages as wellAleksander Morgado
Uncompleted multipart SMS will be exported to DBus, where only the "state" property is valid, so that we allow completely removing those uncompleted multipart SMS which will never get completed due to one reason or another.
2012-03-15broadband-modem: ensure text mode SMS list doesn't pick up too much textAleksander Morgado
This is the port of commit 2104cd725a5f3f9aeacf4dfc4faa70dba293789d to the 06-api branch.
2012-03-15broadband-modem: fix text SMS list regexAleksander Morgado
This is a port of commit c7f54a635a84d5861b1d5f819c25de97b8c0ac32 to the 06-api branch.
2012-03-15iface-modem-messaging: don't allow method calls if not enabledAleksander Morgado
2012-03-15iface-modem: don't force port closing here, it breaks the open/close countAleksander Morgado
2012-03-15iface-modem: simplify disabling sequenceAleksander Morgado
Avoid the _ready() function generator macro, not really needed here.
2012-03-15sim: leave up to 10s for CRSM queriesAleksander Morgado
2012-03-15sms: handle message storing and sending actions from DBusAleksander Morgado
2012-03-15sms-part: new symbol to define invalid indexesAleksander Morgado
SMS parts with invalid indexes are NOT stored yet in the device