mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-27 02:24:35 +00:00

- added support of peer devices connected via dongle - added bootloader type detection from the new 'bootloader_var' option - fix annoying retry messages: mask replies stating the device is temporary busy. Allow to sync more precisely and without annoying messages. - multiple fixes and enhancements
20 lines
446 B
C
20 lines
446 B
C
/*
|
|
* Copyright (C) 2021 Ricardo Cañuelo <ricardo.canuelo@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_NORDIC_HID_CFG_CHANNEL (fu_nordic_hid_cfg_channel_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuNordicHidCfgChannel,
|
|
fu_nordic_hid_cfg_channel,
|
|
FU,
|
|
NORDIC_HID_CFG_CHANNEL,
|
|
FuUdevDevice)
|
|
|
|
FuNordicHidCfgChannel *
|
|
fu_nordic_hid_cfg_channel_new(guint8 id);
|