1cb7b3927b
Signed-off-by: jyzhiyu <jyzhiyu@gmail.com>
47 lines
1.7 KiB
C
47 lines
1.7 KiB
C
/*
|
|
* Copyright 2012 Jared Boone
|
|
*
|
|
* This file is part of AirSpy (based on HackRF project).
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint8_t usb_descriptor_device[];
|
|
extern uint8_t usb_descriptor_device_qualifier[];
|
|
extern uint8_t usb_descriptor_configuration_full_speed[];
|
|
extern uint8_t usb_descriptor_configuration_high_speed[];
|
|
extern uint8_t usb_descriptor_string_languages[];
|
|
extern uint8_t usb_descriptor_string_manufacturer[];
|
|
extern uint8_t usb_descriptor_string_product[];
|
|
extern uint8_t usb_descriptor_string_serial_number[];
|
|
|
|
extern uint8_t* const usb_descriptor_strings[];
|
|
|
|
extern uint8_t usb_descriptor_MSDescriptor[];
|
|
extern uint8_t usb_descriptor_CompatIDDescriptor[];
|
|
extern uint8_t usb_descriptor_ExtProps[];
|
|
|
|
typedef union
|
|
{
|
|
uint64_t sn_64b;
|
|
uint32_t sn_32b[2]; /* 2*32bits 64bits Unique ID */
|
|
uint8_t sn_8b[8]; /* 8*8bits 64bits Unique ID */
|
|
} usb_descriptor_serial_number_t;
|
|
|
|
void usb_descriptor_fill_string_serial_number(usb_descriptor_serial_number_t serial_number);
|