blob: 2b16d6e560fdaa23524afc2b5b80e31cdf3b41fe [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
package mist;
message UsbId {
required uint32 vendor_id = 1;
required uint32 product_id = 2;
}
message UsbModemInfo {
// Initial USB vendor and product ID of the modem when it is in the mass
// storage mode.
required UsbId initial_usb_id = 1;
// A list of possible final USB vendor and product IDs of the modem after
// it has switched to the modem mode.
repeated UsbId final_usb_id = 2;
// A list of USB messages, in form of hexadecimal strings, to send to the
// mass storage interface of the modem in order to switch the modem to the
// modem mode.
repeated string usb_message = 3;
// If true, a response is expected from the mass storage interface after
// sending each USB message to the interface.
optional bool expect_response = 4;
}