mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-26 02:42:46 +00:00
29 lines
445 B
Protocol Buffer
29 lines
445 B
Protocol Buffer
/*
|
|
* Copyright (c) 1999-2021 Logitech, Inc.
|
|
* All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
syntax = "proto3";
|
|
|
|
package logi.device.proto;
|
|
|
|
option java_package = "com.logitech.vc.proto";
|
|
|
|
import "device_common.proto";
|
|
|
|
message SetBLECfgRequest
|
|
{
|
|
/**
|
|
* (REQUIRED) If true, BLE is enabled and active otherwise disabled
|
|
*/
|
|
bool BLE_ON = 1;
|
|
}
|
|
|
|
message SetBLECfgResponse
|
|
{
|
|
bool success = 1;
|
|
repeated Error errors = 2;
|
|
}
|