|
49 | 49 | //| ...
|
50 | 50 | //|
|
51 | 51 |
|
| 52 | +//| def __del__(self) -> None: |
| 53 | +//| """Closes any resources used for this device.""" |
| 54 | +//| ... |
| 55 | +//| |
| 56 | +static mp_obj_t usb_core_device_deinit(mp_obj_t self_in) { |
| 57 | + usb_core_device_obj_t *self = MP_OBJ_TO_PTR(self_in); |
| 58 | + common_hal_usb_core_device_deinit(self); |
| 59 | + return mp_const_none; |
| 60 | +} |
| 61 | +static MP_DEFINE_CONST_FUN_OBJ_1(usb_core_device_deinit_obj, usb_core_device_deinit); |
| 62 | + |
52 | 63 | //| idVendor: int
|
53 | 64 | //| """The USB vendor ID of the device"""
|
54 | 65 | static mp_obj_t usb_core_device_obj_get_idVendor(mp_obj_t self_in) {
|
@@ -105,6 +116,44 @@ MP_DEFINE_CONST_FUN_OBJ_1(usb_core_device_get_manufacturer_obj, usb_core_device_
|
105 | 116 | MP_PROPERTY_GETTER(usb_core_device_manufacturer_obj,
|
106 | 117 | (mp_obj_t)&usb_core_device_get_manufacturer_obj);
|
107 | 118 |
|
| 119 | +//| bus: int |
| 120 | +//| """The bus number of the root hub this device is connected to.""" |
| 121 | +//| |
| 122 | +static mp_obj_t usb_core_device_obj_get_bus(mp_obj_t self_in) { |
| 123 | + usb_core_device_obj_t *self = MP_OBJ_TO_PTR(self_in); |
| 124 | + return MP_OBJ_NEW_SMALL_INT(common_hal_usb_core_device_get_bus(self)); |
| 125 | +} |
| 126 | +MP_DEFINE_CONST_FUN_OBJ_1(usb_core_device_get_bus_obj, usb_core_device_obj_get_bus); |
| 127 | + |
| 128 | +MP_PROPERTY_GETTER(usb_core_device_bus_obj, |
| 129 | + (mp_obj_t)&usb_core_device_get_bus_obj); |
| 130 | + |
| 131 | +//| port_numbers: tuple[int] | None |
| 132 | +//| """The port topology of the devices location. None when connected to the |
| 133 | +//| root port (aka bus).""" |
| 134 | +//| |
| 135 | +static mp_obj_t usb_core_device_obj_get_port_numbers(mp_obj_t self_in) { |
| 136 | + usb_core_device_obj_t *self = MP_OBJ_TO_PTR(self_in); |
| 137 | + return common_hal_usb_core_device_get_port_numbers(self); |
| 138 | +} |
| 139 | +MP_DEFINE_CONST_FUN_OBJ_1(usb_core_device_get_port_numbers_obj, usb_core_device_obj_get_port_numbers); |
| 140 | + |
| 141 | +MP_PROPERTY_GETTER(usb_core_device_port_numbers_obj, |
| 142 | + (mp_obj_t)&usb_core_device_get_port_numbers_obj); |
| 143 | + |
| 144 | + |
| 145 | +//| speed: int |
| 146 | +//| """The speed of the device. One of `usb.util.SPEED_LOW`, `usb.util.SPEED_FULL`, `usb.util.SPEED_HIGH` or 0 for unknown.""" |
| 147 | +//| |
| 148 | +static mp_obj_t usb_core_device_obj_get_speed(mp_obj_t self_in) { |
| 149 | + usb_core_device_obj_t *self = MP_OBJ_TO_PTR(self_in); |
| 150 | + return MP_OBJ_NEW_SMALL_INT(common_hal_usb_core_device_get_speed(self)); |
| 151 | +} |
| 152 | +MP_DEFINE_CONST_FUN_OBJ_1(usb_core_device_get_speed_obj, usb_core_device_obj_get_speed); |
| 153 | + |
| 154 | +MP_PROPERTY_GETTER(usb_core_device_speed_obj, |
| 155 | + (mp_obj_t)&usb_core_device_get_speed_obj); |
| 156 | + |
108 | 157 | //| def set_configuration(self, configuration: int = 1) -> None:
|
109 | 158 | //| """Set the active configuration.
|
110 | 159 | //|
|
@@ -302,11 +351,16 @@ MP_DEFINE_CONST_FUN_OBJ_2(usb_core_device_attach_kernel_driver_obj, usb_core_dev
|
302 | 351 |
|
303 | 352 |
|
304 | 353 | static const mp_rom_map_elem_t usb_core_device_locals_dict_table[] = {
|
| 354 | + { MP_ROM_QSTR(MP_QSTR___del__), MP_ROM_PTR(&usb_core_device_deinit_obj) }, |
| 355 | + { MP_ROM_QSTR(MP_QSTR_deinit), MP_ROM_PTR(&usb_core_device_deinit_obj) }, |
305 | 356 | { MP_ROM_QSTR(MP_QSTR_idVendor), MP_ROM_PTR(&usb_core_device_idVendor_obj) },
|
306 | 357 | { MP_ROM_QSTR(MP_QSTR_idProduct), MP_ROM_PTR(&usb_core_device_idProduct_obj) },
|
307 | 358 | { MP_ROM_QSTR(MP_QSTR_serial_number), MP_ROM_PTR(&usb_core_device_serial_number_obj) },
|
308 | 359 | { MP_ROM_QSTR(MP_QSTR_product), MP_ROM_PTR(&usb_core_device_product_obj) },
|
309 | 360 | { MP_ROM_QSTR(MP_QSTR_manufacturer), MP_ROM_PTR(&usb_core_device_manufacturer_obj) },
|
| 361 | + { MP_ROM_QSTR(MP_QSTR_bus), MP_ROM_PTR(&usb_core_device_bus_obj) }, |
| 362 | + { MP_ROM_QSTR(MP_QSTR_port_numbers), MP_ROM_PTR(&usb_core_device_port_numbers_obj) }, |
| 363 | + { MP_ROM_QSTR(MP_QSTR_speed), MP_ROM_PTR(&usb_core_device_speed_obj) }, |
310 | 364 |
|
311 | 365 | { MP_ROM_QSTR(MP_QSTR_set_configuration), MP_ROM_PTR(&usb_core_device_set_configuration_obj) },
|
312 | 366 | { MP_ROM_QSTR(MP_QSTR_write), MP_ROM_PTR(&usb_core_device_write_obj) },
|
|
0 commit comments