-
Notifications
You must be signed in to change notification settings - Fork 17
/
usbhhelp.hpp
122 lines (109 loc) · 4.47 KB
/
usbhhelp.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* MIT License
*
* Copyright (c) 2021 touchgadgetdev@gmail.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
const TickType_t HOST_EVENT_TIMEOUT = 1;
const TickType_t CLIENT_EVENT_TIMEOUT = 1;
usb_host_client_handle_t Client_Handle;
usb_device_handle_t Device_Handle;
typedef void (*usb_host_enum_cb_t)(const usb_config_desc_t *config_desc);
static usb_host_enum_cb_t _USB_host_enumerate;
void _client_event_callback(const usb_host_client_event_msg_t *event_msg, void *arg)
{
esp_err_t err;
switch (event_msg->event)
{
/**< A new device has been enumerated and added to the USB Host Library */
case USB_HOST_CLIENT_EVENT_NEW_DEV:
ESP_LOGI("", "New device address: %d", event_msg->new_dev.address);
err = usb_host_device_open(Client_Handle, event_msg->new_dev.address, &Device_Handle);
if (err != ESP_OK) ESP_LOGI("", "usb_host_device_open: %x", err);
usb_device_info_t dev_info;
err = usb_host_device_info(Device_Handle, &dev_info);
if (err != ESP_OK) ESP_LOGI("", "usb_host_device_info: %x", err);
ESP_LOGI("", "speed: %d dev_addr %d vMaxPacketSize0 %d bConfigurationValue %d",
dev_info.speed, dev_info.dev_addr, dev_info.bMaxPacketSize0,
dev_info.bConfigurationValue);
const usb_device_desc_t *dev_desc;
err = usb_host_get_device_descriptor(Device_Handle, &dev_desc);
if (err != ESP_OK) ESP_LOGI("", "usb_host_get_device_desc: %x", err);
show_dev_desc(dev_desc);
const usb_config_desc_t *config_desc;
err = usb_host_get_active_config_descriptor(Device_Handle, &config_desc);
if (err != ESP_OK) ESP_LOGI("", "usb_host_get_config_desc: %x", err);
(*_USB_host_enumerate)(config_desc);
break;
/**< A device opened by the client is now gone */
case USB_HOST_CLIENT_EVENT_DEV_GONE:
ESP_LOGI("", "Device Gone handle: %x", event_msg->dev_gone.dev_hdl);
break;
default:
ESP_LOGI("", "Unknown value %d", event_msg->event);
break;
}
}
// Reference: esp-idf/examples/peripherals/usb/host/usb_host_lib/main/usb_host_lib_main.c
void usbh_setup(usb_host_enum_cb_t enumeration_cb)
{
const usb_host_config_t config = {
.intr_flags = ESP_INTR_FLAG_LEVEL1,
};
esp_err_t err = usb_host_install(&config);
ESP_LOGI("", "usb_host_install: %x", err);
const usb_host_client_config_t client_config = {
.is_synchronous = false,
.max_num_event_msg = 5,
.async = {
.client_event_callback = _client_event_callback,
.callback_arg = Client_Handle
}
};
err = usb_host_client_register(&client_config, &Client_Handle);
ESP_LOGI("", "usb_host_client_register: %x", err);
_USB_host_enumerate = enumeration_cb;
}
void usbh_task(void)
{
uint32_t event_flags;
static bool all_clients_gone = false;
static bool all_dev_free = false;
esp_err_t err = usb_host_lib_handle_events(HOST_EVENT_TIMEOUT, &event_flags);
if (err == ESP_OK) {
if (event_flags & USB_HOST_LIB_EVENT_FLAGS_NO_CLIENTS) {
ESP_LOGI("", "No more clients");
all_clients_gone = true;
}
if (event_flags & USB_HOST_LIB_EVENT_FLAGS_ALL_FREE) {
ESP_LOGI("", "No more devices");
all_dev_free = true;
}
}
else {
if (err != ESP_ERR_TIMEOUT) {
ESP_LOGI("", "usb_host_lib_handle_events: %x flags: %x", err, event_flags);
}
}
err = usb_host_client_handle_events(Client_Handle, CLIENT_EVENT_TIMEOUT);
if ((err != ESP_OK) && (err != ESP_ERR_TIMEOUT)) {
ESP_LOGI("", "usb_host_client_handle_events: %x", err);
}
}