blob: c415ab6be022221f1847d4bbcffe6835f6293bd5 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SYSROOT_ZIRCON_DEVICE_USB_PERIPHERAL_H_
#define SYSROOT_ZIRCON_DEVICE_USB_PERIPHERAL_H_
#include <stdint.h>
// Google's USB Vendor ID.
#define GOOGLE_USB_VID 0x18D1
// USB Product ID for Zircon CDC Ethernet Function.
#define GOOGLE_USB_CDC_PID 0xA020
// USB Product ID for Zircon USB Mass Storage Function.
#define GOOGLE_USB_UMS_PID 0xA021
// USB Product ID for Zircon USB Function Test.
#define GOOGLE_USB_FUNCTION_TEST_PID 0xA022
// USB Product ID for CDC Ethernet and Function Test composite device.
#define GOOGLE_USB_CDC_AND_FUNCTION_TEST_PID 0xA023
#endif // SYSROOT_ZIRCON_DEVICE_USB_PERIPHERAL_H_