| 53 | } |
| 54 | |
| 55 | uint16_t USBHIDKeyboard::_onGetDescriptor(uint8_t *dst) { |
| 56 | memcpy(dst, report_descriptor, sizeof(report_descriptor)); |
| 57 | return sizeof(report_descriptor); |
| 58 | } |
| 59 | |
| 60 | void USBHIDKeyboard::begin(const uint8_t *layout) { |
| 61 | _asciimap = layout; |
nothing calls this directly
no outgoing calls
no test coverage detected