Change .report
to .last_received_report
This commit is contained in:
parent
9aca580195
commit
40f3cd3615
@ -58,21 +58,21 @@ STATIC mp_obj_t usb_hid_device_send_report(mp_obj_t self_in, mp_obj_t buffer) {
|
|||||||
}
|
}
|
||||||
MP_DEFINE_CONST_FUN_OBJ_2(usb_hid_device_send_report_obj, usb_hid_device_send_report);
|
MP_DEFINE_CONST_FUN_OBJ_2(usb_hid_device_send_report_obj, usb_hid_device_send_report);
|
||||||
|
|
||||||
//| report: bytes
|
//| last_received_report: bytes
|
||||||
//| """The HID OUT report as a `bytes`. (read-only)"""
|
//| """The HID OUT report as a `bytes`. (read-only). `None` if nothing received."""
|
||||||
//|
|
//|
|
||||||
STATIC mp_obj_t usb_hid_device_obj_get_report(mp_obj_t self_in) {
|
STATIC mp_obj_t usb_hid_device_obj_get_last_received_report(mp_obj_t self_in) {
|
||||||
usb_hid_device_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
usb_hid_device_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
||||||
if (self->out_report_buffer == 0) {
|
if (self->out_report_buffer == 0) {
|
||||||
return mp_const_none;
|
return mp_const_none;
|
||||||
}
|
}
|
||||||
return mp_obj_new_bytes(self->out_report_buffer, self->out_report_length);
|
return mp_obj_new_bytes(self->out_report_buffer, self->out_report_length);
|
||||||
}
|
}
|
||||||
MP_DEFINE_CONST_FUN_OBJ_1(usb_hid_device_get_report_obj, usb_hid_device_obj_get_report);
|
MP_DEFINE_CONST_FUN_OBJ_1(usb_hid_device_get_last_received_report_obj, usb_hid_device_obj_get_last_received_report);
|
||||||
|
|
||||||
const mp_obj_property_t usb_hid_device_report_obj = {
|
const mp_obj_property_t usb_hid_device_last_received_report_obj = {
|
||||||
.base.type = &mp_type_property,
|
.base.type = &mp_type_property,
|
||||||
.proxy = {(mp_obj_t)&usb_hid_device_get_report_obj,
|
.proxy = {(mp_obj_t)&usb_hid_device_get_last_received_report_obj,
|
||||||
(mp_obj_t)&mp_const_none_obj,
|
(mp_obj_t)&mp_const_none_obj,
|
||||||
(mp_obj_t)&mp_const_none_obj},
|
(mp_obj_t)&mp_const_none_obj},
|
||||||
};
|
};
|
||||||
@ -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[] = {
|
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_send_report), MP_ROM_PTR(&usb_hid_device_send_report_obj) },
|
||||||
{ MP_ROM_QSTR(MP_QSTR_report), MP_ROM_PTR(&usb_hid_device_report_obj) },
|
{ MP_ROM_QSTR(MP_QSTR_last_received_report), MP_ROM_PTR(&usb_hid_device_report_obj) },
|
||||||
{ MP_ROM_QSTR(MP_QSTR_usage_page), MP_ROM_PTR(&usb_hid_device_usage_page_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)},
|
{ MP_ROM_QSTR(MP_QSTR_usage), MP_ROM_PTR(&usb_hid_device_usage_obj)},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user