mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-03 14:24:15 +01:00
f0cf13c89b
In particular HIDDescriptorListNode.cb has been renamed to HIDDescriptorListNode.descriptor because it contains decriptor data and not callbacks. Moreover the HID_Descriptor.descriptor field has been renamed to HID_Descriptor.data so the structure has now two fields length and data. typedef struct __attribute__((packed)) { uint16_t length; const void* data; } HID_Descriptor; class HIDDescriptorListNode { public: HIDDescriptorListNode *next = NULL; const HID_Descriptor *descriptor; HIDDescriptorListNode(const HID_Descriptor *d) : descriptor(d) { } }; This imply a change in the use of the node from: node->cb->lenght node->cd->descriptor to node->descriptor->length node->descriptor->data |
||
---|---|---|
.. | ||
cores/arduino | ||
firmwares/atmega16u2 | ||
libraries | ||
system | ||
variants/arduino_due_x | ||
boards.txt | ||
platform.txt | ||
programmers.txt |