forked from mfulz_github/qmk_firmware
Fix more build errors in the LowLevel "WithParser" HID Host demos.
This commit is contained in:
parent
073a58cd29
commit
f0fcffd146
|
@ -173,7 +173,7 @@ void Keyboard_HID_Task(void)
|
|||
{
|
||||
puts_P(PSTR(ESC_FG_RED "Report Parse Error.\r\n"));
|
||||
|
||||
if (!(HIDReportInfo->TotalReportItems))
|
||||
if (!(HIDReportInfo.TotalReportItems))
|
||||
puts_P(PSTR("Not a valid Keyboard." ESC_FG_WHITE));
|
||||
else
|
||||
printf_P(PSTR(" -- Error Code: %d\r\n" ESC_FG_WHITE), ErrorCode);
|
||||
|
|
|
@ -173,7 +173,7 @@ void Mouse_HID_Task(void)
|
|||
{
|
||||
puts_P(PSTR(ESC_FG_RED "Report Parse Error.\r\n"));
|
||||
|
||||
if (!(HIDReportInfo->TotalReportItems))
|
||||
if (!(HIDReportInfo.TotalReportItems))
|
||||
puts_P(PSTR("Not a valid Mouse." ESC_FG_WHITE));
|
||||
else
|
||||
printf_P(PSTR(" -- Error Code: %d\r\n" ESC_FG_WHITE), ErrorCode);
|
||||
|
|
Loading…
Reference in New Issue