diff --git a/lib_xua/src/hid/hid_report.c b/lib_xua/src/hid/hid_report.c index 90a0d4d4..a514ff08 100644 --- a/lib_xua/src/hid/hid_report.c +++ b/lib_xua/src/hid/hid_report.c @@ -152,17 +152,12 @@ void hidCaptureReportTime( const unsigned id, const unsigned time ) void hidClearChangePending( const unsigned id ) { - printf("ccp%d", id); for( size_t idx = 0U; idx < HID_REPORT_COUNT; ++idx) { if(( id == 0U ) || ( id == hidGetElementReportId( hidReports[ idx ]->location ))) { - if( !s_hidChangePending[ idx ] ) - printf(""); s_hidChangePending[ idx ] = 0U; - printf("y"); break; } } - printf("\n"); } static unsigned hidGetElementBitLocation( const unsigned short location ) @@ -421,7 +416,6 @@ void hidSetChangePending( const unsigned id ) { for( size_t idx = 0U; idx < HID_REPORT_COUNT; ++idx) { if( id == hidGetElementReportId( hidReports[ idx ]->location )) { - printf("Set cp idx %d\n", idx); s_hidChangePending[ idx ] = 1U; break; }