summaryrefslogtreecommitdiff
path: root/examples/simple-tester-python
Commit message (Collapse)AuthorAgeFilesLines
* simple-tester-python: support QMI over MBIM automaticallyAleksander Morgado2022-02-171-1/+1
|
* build: use python3 everywheremastergoapunk2021-09-131-1/+1
|
* build: Remove autotoolsIñigo Martínez2021-08-051-2/+0
| | | | | To avoid the burden of maintaining multiple build systems, autotools support has been removed.
* qmi-codegen: (skip) return value in bundle getters and settersAleksander Morgado2020-09-081-17/+16
| | | | | | | | | | | | | | | | | | The return value (TRUE or FALSE) is not required in the introspection support because the method already throws an exception on failure (in other words, if there is no exception the return value would always be TRUE), so explicitly (skip) it. This commit ends up triggering an API break in the bindings generated via GObject introspection, because the getter and setter calls would now have one less return argument. E.g. instead of: success, imei = output.get_imei() We should now do: imei = output.get_imei() There is no API break in libqmi-glib.
* examples: also get IDs in the python testerAleksander Morgado2020-09-031-6/+43
|
* examples: add introspection based example testerAleksander Morgado2020-05-303-0/+158