ModemManager::ModemFirmware Class

class ModemManager::ModemFirmware

The ModemFirmware class. More...

Header: #include <ModemManagerQt/ModemFirmware>
CMake: find_package(KF6 REQUIRED COMPONENTS ModemManagerQt)
target_link_libraries(mytarget PRIVATE KF6::ModemManagerQt)
Since: 1.1.94
Inherits: ModemManager::Interface

Public Types

Public Functions

ModemFirmware(const QString &path, QObject *parent = nullptr)
QDBusPendingReply<QString, ModemManager::QVariantMapList> listImages()
void selectImage(const QString &uniqueid)

Detailed Description

This class allows clients to select or install firmware images on modems.

Firmware slots and firmware images are identified by arbitrary opaque strings.

Member Type Documentation

ModemFirmware::List

ModemFirmware::Ptr

Member Function Documentation

[explicit] ModemFirmware::ModemFirmware(const QString &path, QObject *parent = nullptr)

QDBusPendingReply<QString, ModemManager::QVariantMapList> ModemFirmware::listImages()

List installed firmware images.

Depending on the type of modem, installed images may be stored on the host or the modem. Installed images can be selected non-destructively.

Returns selected (QString) The unique name of the selected firmware image, or the empty string if no image is selected. installed (QVariantMapList) A map of dictionaries containing the properties of the installed firmware images.

void ModemFirmware::selectImage(const QString &uniqueid)

Selects a different firmware image to use, and immediately resets the modem so that it begins using the new firmware image.

The method will fail if the identifier does not match any of the names returned by listImages(), or if the image could not be selected for some reason.

uniqueid The unique ID of the firmware image to select.