[Bug] Fix compiliation issues with OS Detection (#24502)
This commit is contained in:
		
							parent
							
								
									22e6a8d15e
								
							
						
					
					
						commit
						baa29fef9d
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -76,7 +76,7 @@ void os_detection_task(void) {
 | 
				
			||||||
#ifdef OS_DETECTION_KEYBOARD_RESET
 | 
					#ifdef OS_DETECTION_KEYBOARD_RESET
 | 
				
			||||||
    // resetting the keyboard on the USB device state change callback results in instability, so delegate that to this task
 | 
					    // resetting the keyboard on the USB device state change callback results in instability, so delegate that to this task
 | 
				
			||||||
    // only take action if it's been stable at least once, to avoid issues with some KVMs
 | 
					    // only take action if it's been stable at least once, to avoid issues with some KVMs
 | 
				
			||||||
    if (current_usb_device_state <= USB_DEVICE_STATE_INIT && maxprev_usb_device_state >= USB_DEVICE_STATE_CONFIGURED) {
 | 
					    if (current_usb_device_state.configure_state <= USB_DEVICE_STATE_INIT && maxprev_usb_device_state.configure_state >= USB_DEVICE_STATE_CONFIGURED) {
 | 
				
			||||||
        if (debouncing && timer_elapsed_fast(last_time) >= OS_DETECTION_DEBOUNCE) {
 | 
					        if (debouncing && timer_elapsed_fast(last_time) >= OS_DETECTION_DEBOUNCE) {
 | 
				
			||||||
            soft_reset_keyboard();
 | 
					            soft_reset_keyboard();
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue