Skip to content

Commit

Permalink
TailLight: Mute logging of "Unknown control Code" warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Orderud committed Mar 19, 2024
1 parent 1c260d1 commit 1234f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TailLight/TailLight.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ struct TailLightReport {
}

if ((Unknown1 != 0xB2) || (Unknown2 != 0x03)) {
KdPrint(("TailLight: TailLightReport: Unknown control Code 0x%x 0x%x\n", Unknown1, Unknown2));
//KdPrint(("TailLight: TailLightReport: Unknown control Code 0x%x 0x%x\n", Unknown1, Unknown2));
return false;
}

Expand All @@ -48,7 +48,7 @@ struct TailLightReport {
#endif

//report ID of the collection to which the control request is sent
UCHAR ReportId = 36; // (0x24)
UCHAR ReportId = 36; // (0x24)

// control codes (user-defined)
UCHAR Unknown1 = 0xB2; // magic value
Expand Down

0 comments on commit 1234f81

Please sign in to comment.