1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
/*
* Copyright 1999-2023 Logitech, Inc.
* All Rights Reserved
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
syntax = "proto3";
package logi.device.proto;
option java_package = "com.logitech.vc.proto";
/**
* Request to start update
* This is to be included in UsbMsg
* EXPECTED RESPONSE
* UpdateNowResponse
*/
message UpdateNowRequest
{
/**
* Unused. Reserved for future use.
*/
bool reserved = 1;
}
/**
* Update now response
*/
message UpdateNowResponse
{
/**
* bool value to indicate update was started
*/
bool started = 1;
}
|