Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.
Upstream: https://github.com/ARMmbed/DAPLink
source/usb/usb_webusb.h@0:01f31e923fe2, 2020-04-07 (annotated)
- Committer:
- Pawel Zarembski
- Date:
- Tue Apr 07 12:55:42 2020 +0200
- Revision:
- 0:01f31e923fe2
hani: DAPLink with reset workaround
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Pawel Zarembski |
0:01f31e923fe2 | 1 | /** |
Pawel Zarembski |
0:01f31e923fe2 | 2 | * @file usb_webusb.h |
Pawel Zarembski |
0:01f31e923fe2 | 3 | * @brief WebUSB driver header |
Pawel Zarembski |
0:01f31e923fe2 | 4 | * |
Pawel Zarembski |
0:01f31e923fe2 | 5 | * DAPLink Interface Firmware |
Pawel Zarembski |
0:01f31e923fe2 | 6 | * Copyright (c) 2009-2016, ARM Limited, All Rights Reserved |
Pawel Zarembski |
0:01f31e923fe2 | 7 | * SPDX-License-Identifier: Apache-2.0 |
Pawel Zarembski |
0:01f31e923fe2 | 8 | * |
Pawel Zarembski |
0:01f31e923fe2 | 9 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
Pawel Zarembski |
0:01f31e923fe2 | 10 | * not use this file except in compliance with the License. |
Pawel Zarembski |
0:01f31e923fe2 | 11 | * You may obtain a copy of the License at |
Pawel Zarembski |
0:01f31e923fe2 | 12 | * |
Pawel Zarembski |
0:01f31e923fe2 | 13 | * http://www.apache.org/licenses/LICENSE-2.0 |
Pawel Zarembski |
0:01f31e923fe2 | 14 | * |
Pawel Zarembski |
0:01f31e923fe2 | 15 | * Unless required by applicable law or agreed to in writing, software |
Pawel Zarembski |
0:01f31e923fe2 | 16 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
Pawel Zarembski |
0:01f31e923fe2 | 17 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Pawel Zarembski |
0:01f31e923fe2 | 18 | * See the License for the specific language governing permissions and |
Pawel Zarembski |
0:01f31e923fe2 | 19 | * limitations under the License. |
Pawel Zarembski |
0:01f31e923fe2 | 20 | */ |
Pawel Zarembski |
0:01f31e923fe2 | 21 | |
Pawel Zarembski |
0:01f31e923fe2 | 22 | #ifndef __USB_WEBUSB_H__ |
Pawel Zarembski |
0:01f31e923fe2 | 23 | #define __USB_WEBUSB_H__ |
Pawel Zarembski |
0:01f31e923fe2 | 24 | |
Pawel Zarembski |
0:01f31e923fe2 | 25 | /* WebUSB Descriptor Types */ |
Pawel Zarembski |
0:01f31e923fe2 | 26 | #define WEBUSB_DESCRIPTOR_SET_HEADER_TYPE 0x00 |
Pawel Zarembski |
0:01f31e923fe2 | 27 | #define WEBUSB_CONFIGURATION_SUBSET_HEADER_TYPE 0x01 |
Pawel Zarembski |
0:01f31e923fe2 | 28 | #define WEBUSB_FUNCTION_SUBSET_HEADER_TYPE 0x02 |
Pawel Zarembski |
0:01f31e923fe2 | 29 | #define WEBUSB_URL_TYPE 0x03 |
Pawel Zarembski |
0:01f31e923fe2 | 30 | |
Pawel Zarembski |
0:01f31e923fe2 | 31 | /* WebUSB Platform Capability Descriptor */ |
Pawel Zarembski |
0:01f31e923fe2 | 32 | typedef __packed struct _WEBUSB_PLATFORM_CAPABILITY_DESCRIPTOR { |
Pawel Zarembski |
0:01f31e923fe2 | 33 | U8 bLength; |
Pawel Zarembski |
0:01f31e923fe2 | 34 | U8 bDescriptorType; |
Pawel Zarembski |
0:01f31e923fe2 | 35 | U8 bDevCapabilityType; |
Pawel Zarembski |
0:01f31e923fe2 | 36 | U8 bReserved; |
Pawel Zarembski |
0:01f31e923fe2 | 37 | U8 platformCapabilityUUID[16]; |
Pawel Zarembski |
0:01f31e923fe2 | 38 | U16 bcdVersion; |
Pawel Zarembski |
0:01f31e923fe2 | 39 | U8 bVendorCode; |
Pawel Zarembski |
0:01f31e923fe2 | 40 | U8 iLandingPage; |
Pawel Zarembski |
0:01f31e923fe2 | 41 | } WEBUSB_PLATFORM_CAPABILITY_DESCRIPTOR; |
Pawel Zarembski |
0:01f31e923fe2 | 42 | |
Pawel Zarembski |
0:01f31e923fe2 | 43 | typedef __packed struct _WEBUSB_URL_DESCRIPTOR { |
Pawel Zarembski |
0:01f31e923fe2 | 44 | U8 bLength; |
Pawel Zarembski |
0:01f31e923fe2 | 45 | U8 bDescriptorType; |
Pawel Zarembski |
0:01f31e923fe2 | 46 | U8 bScheme; |
Pawel Zarembski |
0:01f31e923fe2 | 47 | char URL[]; |
Pawel Zarembski |
0:01f31e923fe2 | 48 | } WEBUSB_URL_DESCRIPTOR; |
Pawel Zarembski |
0:01f31e923fe2 | 49 | |
Pawel Zarembski |
0:01f31e923fe2 | 50 | /* WebUSB Request Codes */ |
Pawel Zarembski |
0:01f31e923fe2 | 51 | #define WEBUSB_REQUEST_GET_URL 0x02 |
Pawel Zarembski |
0:01f31e923fe2 | 52 | |
Pawel Zarembski |
0:01f31e923fe2 | 53 | /* bScheme in URL descriptor */ |
Pawel Zarembski |
0:01f31e923fe2 | 54 | #define WEBUSB_URL_SCHEME_HTTP 0x00 |
Pawel Zarembski |
0:01f31e923fe2 | 55 | #define WEBUSB_URL_SCHEME_HTTPS 0x01 |
Pawel Zarembski |
0:01f31e923fe2 | 56 | |
Pawel Zarembski |
0:01f31e923fe2 | 57 | /* WebUSB Descriptor sizes */ |
Pawel Zarembski |
0:01f31e923fe2 | 58 | #define WEBUSB_DESCRIPTOR_SET_HEADER_SIZE 5 |
Pawel Zarembski |
0:01f31e923fe2 | 59 | #define WEBUSB_CONFIGURATION_SUBSET_HEADER_SIZE 4 |
Pawel Zarembski |
0:01f31e923fe2 | 60 | #define WEBUSB_FUNCTION_SUBSET_HEADER_SIZE 3 |
Pawel Zarembski |
0:01f31e923fe2 | 61 | |
Pawel Zarembski |
0:01f31e923fe2 | 62 | #endif /* __USB_WEBUSB_H__ */ |