mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #4210 from adbridge/usb_logo
USB: Added support for the logo key to the keyboardpull/4225/head
commit
143e3462a3
|
@ -22,11 +22,16 @@
|
|||
#include "USBHID.h"
|
||||
#include "Stream.h"
|
||||
|
||||
/* Modifiers */
|
||||
/* Modifiers, left keys then right keys. */
|
||||
enum MODIFIER_KEY {
|
||||
KEY_CTRL = 1,
|
||||
KEY_SHIFT = 2,
|
||||
KEY_ALT = 4,
|
||||
KEY_CTRL = 0x01,
|
||||
KEY_SHIFT = 0x02,
|
||||
KEY_ALT = 0x04,
|
||||
KEY_LOGO = 0x08,
|
||||
KEY_RCTRL = 0x10,
|
||||
KEY_RSHIFT = 0x20,
|
||||
KEY_RALT = 0x40,
|
||||
KEY_RLOGO = 0x80,
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue