circuitpython/shared-module/usb_hid/Device.c

105 lines
3.7 KiB
C
Raw Normal View History

2018-07-31 05:42:04 -04:00
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2018 hathach for Adafruit Industries
*
* 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.
*/
#include <string.h>
2018-07-31 05:42:04 -04:00
#include "py/runtime.h"
#include "shared-bindings/usb_hid/Device.h"
#include "shared-module/usb_hid/Device.h"
2018-08-16 17:21:44 -04:00
#include "supervisor/shared/translate.h"
#include "supervisor/shared/tick.h"
2018-07-31 05:42:04 -04:00
#include "tusb.h"
uint8_t common_hal_usb_hid_device_get_usage_page(usb_hid_device_obj_t *self) {
return self->usage_page;
}
uint8_t common_hal_usb_hid_device_get_usage(usb_hid_device_obj_t *self) {
return self->usage;
}
2021-03-15 09:57:36 -04:00
void common_hal_usb_hid_device_send_report(usb_hid_device_obj_t *self, uint8_t *report, uint8_t len) {
2018-07-31 05:42:04 -04:00
if (len != self->report_length) {
2018-08-16 17:21:44 -04:00
mp_raise_ValueError_varg(translate("Buffer incorrect size. Should be %d bytes."), self->report_length);
2018-07-31 05:42:04 -04:00
}
// Wait until interface is ready, timeout = 2 seconds
uint64_t end_ticks = supervisor_ticks_ms64() + 2000;
2021-03-15 09:57:36 -04:00
while ((supervisor_ticks_ms64() < end_ticks) && !tud_hid_ready()) {
2019-09-03 14:44:46 -04:00
RUN_BACKGROUND_TASKS;
}
2018-07-31 05:42:04 -04:00
2021-03-15 09:57:36 -04:00
if (!tud_hid_ready()) {
2018-08-16 17:21:44 -04:00
mp_raise_msg(&mp_type_OSError, translate("USB Busy"));
2018-07-31 05:42:04 -04:00
}
memcpy(self->report_buffer, report, len);
2021-03-15 09:57:36 -04:00
if (!tud_hid_report(self->report_id, self->report_buffer, len)) {
2018-08-16 17:21:44 -04:00
mp_raise_msg(&mp_type_OSError, translate("USB Error"));
2018-07-31 05:42:04 -04:00
}
}
2021-03-15 09:57:36 -04:00
static usb_hid_device_obj_t *get_hid_device(uint8_t report_id) {
for (uint8_t i = 0; i < USB_HID_NUM_DEVICES; i++) {
if (usb_hid_devices[i].report_id == report_id) {
return &usb_hid_devices[i];
}
}
return NULL;
}
2018-07-31 05:42:04 -04:00
// Callbacks invoked when receive Get_Report request through control endpoint
2021-03-15 09:57:36 -04:00
uint16_t tud_hid_get_report_cb(uint8_t itf, uint8_t report_id, hid_report_type_t report_type, uint8_t *buffer, uint16_t reqlen) {
(void)itf;
2018-07-31 05:42:04 -04:00
// only support Input Report
2021-03-15 09:57:36 -04:00
if (report_type != HID_REPORT_TYPE_INPUT) {
return 0;
}
2018-07-31 05:42:04 -04:00
// fill buffer with current report
memcpy(buffer, get_hid_device(report_id)->report_buffer, reqlen);
2018-07-31 05:42:04 -04:00
return reqlen;
}
// Callbacks invoked when receive Set_Report request through control endpoint
2021-03-15 09:57:36 -04:00
void tud_hid_set_report_cb(uint8_t itf, uint8_t report_id, hid_report_type_t report_type, uint8_t const *buffer, uint16_t bufsize) {
(void)itf;
2020-08-19 08:18:17 -04:00
if (report_type == HID_REPORT_TYPE_INVALID) {
report_id = buffer[0];
buffer++;
bufsize--;
} else if (report_type != HID_REPORT_TYPE_OUTPUT) {
return;
}
2021-03-15 09:57:36 -04:00
usb_hid_device_obj_t *hid_device = get_hid_device(report_id);
2018-07-31 12:02:15 -04:00
2020-08-19 08:18:17 -04:00
if (hid_device && hid_device->out_report_length >= bufsize) {
memcpy(hid_device->out_report_buffer, buffer, bufsize);
2018-07-31 05:42:04 -04:00
}
}