mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-05 10:40:20 +00:00

The plugin is using Nordic Semiconductor HID config channel to perform devices update directly atteched via USB and BLE. Current implementation supports FW images compatible with the nRF Secure Immutable Bootloader. This version has been tested with nRF52840-DK board. Signed-off-by: Denis Pynkin <denis.pynkin@collabora.com> Signed-off-by: Ricardo Cañuelo <ricardo.canuelo@collabora.com> Signed-off-by: Richard Hughes <richard@hughsie.com>
17 lines
353 B
C
17 lines
353 B
C
/*
|
|
* Copyright (C) 2021 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_NORDIC_HID_ARCHIVE (fu_nordic_hid_archive_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuNordicHidArchive,
|
|
fu_nordic_hid_archive,
|
|
FU,
|
|
NORDIC_HID_ARCHIVE,
|
|
FuArchiveFirmware)
|