mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-24 22:28:21 +00:00

It's actually quite hard to build a front-end for fwupd at the moment as you're never sure when the progress bar is going to zip back to 0% and start all over again. Some plugins go 0..100% for write, others go 0..100% for erase, then again for write, then *again* for verify. By creating a helper object we can easily split up the progress of the specific task, e.g. write_firmware(). We can encode at the plugin level "the erase takes 50% of the time, the write takes 40% and the read takes 10%". This means we can have a progressbar which goes up just once at a consistent speed.
49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#include "fu-wacom-common.h"
|
|
|
|
#define FU_TYPE_WACOM_DEVICE (fu_wacom_device_get_type())
|
|
G_DECLARE_DERIVABLE_TYPE(FuWacomDevice, fu_wacom_device, FU, WACOM_DEVICE, FuUdevDevice)
|
|
|
|
struct _FuWacomDeviceClass {
|
|
FuUdevDeviceClass parent_class;
|
|
gboolean (*write_firmware)(FuDevice *self,
|
|
GPtrArray *chunks,
|
|
FuProgress *progress,
|
|
GError **error);
|
|
};
|
|
|
|
typedef enum {
|
|
FU_WACOM_DEVICE_CMD_FLAG_NONE = 0,
|
|
FU_WACOM_DEVICE_CMD_FLAG_POLL_ON_WAITING = 1 << 0,
|
|
FU_WACOM_DEVICE_CMD_FLAG_NO_ERROR_CHECK = 1 << 1,
|
|
} FuWacomDeviceCmdFlags;
|
|
|
|
gboolean
|
|
fu_wacom_device_set_feature(FuWacomDevice *self, const guint8 *data, guint datasz, GError **error);
|
|
gboolean
|
|
fu_wacom_device_get_feature(FuWacomDevice *self, guint8 *data, guint datasz, GError **error);
|
|
gboolean
|
|
fu_wacom_device_cmd(FuWacomDevice *self,
|
|
FuWacomRawRequest *req,
|
|
FuWacomRawResponse *rsp,
|
|
gulong delay_us,
|
|
FuWacomDeviceCmdFlags flags,
|
|
GError **error);
|
|
gboolean
|
|
fu_wacom_device_erase_all(FuWacomDevice *self, GError **error);
|
|
gboolean
|
|
fu_wacom_device_check_mpu(FuWacomDevice *self, GError **error);
|
|
gsize
|
|
fu_wacom_device_get_block_sz(FuWacomDevice *self);
|
|
guint
|
|
fu_wacom_device_get_base_addr(FuWacomDevice *self);
|