File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
// ================================================================================
28
28
// Keyboard
29
29
30
- static const u8 _hidReportDescriptor[] PROGMEM = {
30
+ static const uint8_t _hidReportDescriptor[] PROGMEM = {
31
31
32
32
// Keyboard
33
33
0x05 , 0x01 , // USAGE_PAGE (Generic Desktop) // 47
Original file line number Diff line number Diff line change 23
23
24
24
#if defined(_USING_HID)
25
25
26
- static const u8 _hidReportDescriptor[] PROGMEM = {
26
+ static const uint8_t _hidReportDescriptor[] PROGMEM = {
27
27
28
28
// Mouse
29
29
0x05 , 0x01 , // USAGE_PAGE (Generic Desktop) // 54
@@ -88,7 +88,7 @@ void Mouse_::click(uint8_t b)
88
88
89
89
void Mouse_::move (signed char x, signed char y, signed char wheel)
90
90
{
91
- u8 m[4 ];
91
+ uint8_t m[4 ];
92
92
m[0 ] = _buttons;
93
93
m[1 ] = x;
94
94
m[2 ] = y;
You can’t perform that action at this time.
0 commit comments