blob: c7490f57e11ac4448c8234fe66a2ef61b04dbf52 [file] [log] [blame]
// Copyright 2019 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 DDK_USB_PERIPHERAL_CONFIG_H_
#define DDK_USB_PERIPHERAL_CONFIG_H_
#include <fuchsia/hardware/usb/peripheral/c/fidl.h>
#include <stdint.h>
struct UsbConfig {
uint16_t vid;
uint16_t pid;
char manufacturer[240];
char product[240];
char serial[240];
fuchsia_hardware_usb_peripheral_FunctionDescriptor functions[];
};
#endif // DDK_USB_PERIPHERAL_CONFIG_H_