summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Halbert <halbert@adafruit.com>2020-09-10 14:21:36 -0400
committerGitHub <noreply@github.com>2020-09-10 14:21:36 -0400
commitf0bb9635bf311013e7b1ff69d1a0542575cf9d0a (patch)
tree7978f22f04350e4cc963cde22a87236ee235986d
parent40f3cd3615ca7be009ba2deb37209fa4d3993bf9 (diff)
MIssed one change for .last_received_report
-rw-r--r--shared-bindings/usb_hid/Device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/usb_hid/Device.c b/shared-bindings/usb_hid/Device.c
index 8f28bc422..c7c05a974 100644
--- a/shared-bindings/usb_hid/Device.c
+++ b/shared-bindings/usb_hid/Device.c
@@ -115,7 +115,7 @@ const mp_obj_property_t usb_hid_device_usage_obj = {
STATIC const mp_rom_map_elem_t usb_hid_device_locals_dict_table[] = {
{ MP_ROM_QSTR(MP_QSTR_send_report), MP_ROM_PTR(&usb_hid_device_send_report_obj) },
- { MP_ROM_QSTR(MP_QSTR_last_received_report), MP_ROM_PTR(&usb_hid_device_report_obj) },
+ { MP_ROM_QSTR(MP_QSTR_last_received_report), MP_ROM_PTR(&usb_hid_device_last_received_report_obj) },
{ MP_ROM_QSTR(MP_QSTR_usage_page), MP_ROM_PTR(&usb_hid_device_usage_page_obj)},
{ MP_ROM_QSTR(MP_QSTR_usage), MP_ROM_PTR(&usb_hid_device_usage_obj)},
};