We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca7d22e commit 92a05d2Copy full SHA for 92a05d2
libraries/Keyboard/src/Keyboard.cpp
@@ -27,7 +27,7 @@
27
//================================================================================
28
// Keyboard
29
30
-static const u8 _hidReportDescriptor[] PROGMEM = {
+static const uint8_t _hidReportDescriptor[] PROGMEM = {
31
32
33
0x05, 0x01, // USAGE_PAGE (Generic Desktop) // 47
libraries/Mouse/src/Mouse.cpp
@@ -23,7 +23,7 @@
23
24
#if defined(_USING_HID)
25
26
// Mouse
0x05, 0x01, // USAGE_PAGE (Generic Desktop) // 54
@@ -88,7 +88,7 @@ void Mouse_::click(uint8_t b)
88
89
void Mouse_::move(signed char x, signed char y, signed char wheel)
90
{
91
- u8 m[4];
+ uint8_t m[4];
92
m[0] = _buttons;
93
m[1] = x;
94
m[2] = y;
0 commit comments