63 lines
1.7 KiB
Protocol Buffer
63 lines
1.7 KiB
Protocol Buffer
/*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* ConfigMessages.proto
|
|
* Defines the protocol buffers used to configure the Usb Pro device
|
|
* Copyright (C) 2005 - 2009 Simon Newton
|
|
*/
|
|
|
|
package ola.plugin.usbpro;
|
|
|
|
message ParameterReply {
|
|
required uint32 firmware_high = 1;
|
|
required uint32 firmware = 2;
|
|
required uint32 break_time = 3;
|
|
required uint32 mab_time = 4;
|
|
required uint32 rate = 5;
|
|
}
|
|
|
|
/*
|
|
* Setting any one of these will update the widget, otherwise we just do a
|
|
* read.
|
|
*/
|
|
message ParameterRequest {
|
|
optional uint32 break_time = 1;
|
|
optional uint32 mab_time = 2;
|
|
optional uint32 rate = 3;
|
|
}
|
|
|
|
message SerialNumberReply {
|
|
required string serial = 1;
|
|
}
|
|
|
|
message Request {
|
|
enum RequestType {
|
|
USBPRO_PARAMETER_REQUEST = 1;
|
|
USBPRO_SERIAL_REQUEST = 2;
|
|
}
|
|
required RequestType type = 1;
|
|
optional ParameterRequest parameters = 2;
|
|
}
|
|
|
|
message Reply {
|
|
enum ReplyType {
|
|
USBPRO_PARAMETER_REPLY = 1;
|
|
USBPRO_SERIAL_REPLY = 2;
|
|
}
|
|
required ReplyType type = 1;
|
|
optional ParameterReply parameters = 2;
|
|
optional SerialNumberReply serial_number = 3;
|
|
}
|