From 6af29dacaaea968955ca1690037a9f6e9e0fb0ff Mon Sep 17 00:00:00 2001 From: Javier Date: Fri, 15 Apr 2022 12:26:02 +0200 Subject: add log msgs for non-detection of ps2 wheel --- mousetsr.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'mousetsr.c') diff --git a/mousetsr.c b/mousetsr.c index b9e9fc7..b9fad9e 100644 --- a/mousetsr.c +++ b/mousetsr.c @@ -947,11 +947,13 @@ static void reset_mouse_hardware() #if USE_WHEEL if (data.usewheel && ps2m_detect_wheel()) { - // Detect wheel also reinitializes the mouse to the proper packet size + dlog_puts("PS/2 wheel detected"); data.haswheel = true; + // Detect wheel also reinitializes the mouse to the proper packet size } else { - // Otherwise do an extra reset to return back to initial state, just in case + dlog_puts("PS/2 wheel NOT detected"); data.haswheel = false; + // Otherwise do an extra reset to return back to initial state, just in case ps2m_init(PS2M_PACKET_SIZE_PLAIN); } #else -- cgit v1.2.3