mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-04 07:12:33 +01:00 
			
		
		
		
	[Bug] Fix matrix scan reporting interval (#16825)
This commit is contained in:
		
							parent
							
								
									98d411232f
								
							
						
					
					
						commit
						84c9d6ff39
					
				@ -149,7 +149,7 @@ void matrix_scan_perf_task(void) {
 | 
				
			|||||||
    matrix_scan_count++;
 | 
					    matrix_scan_count++;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    uint32_t timer_now = timer_read32();
 | 
					    uint32_t timer_now = timer_read32();
 | 
				
			||||||
    if (TIMER_DIFF_32(timer_now, matrix_timer) > 1000) {
 | 
					    if (TIMER_DIFF_32(timer_now, matrix_timer) >= 1000) {
 | 
				
			||||||
#    if defined(CONSOLE_ENABLE)
 | 
					#    if defined(CONSOLE_ENABLE)
 | 
				
			||||||
        dprintf("matrix scan frequency: %lu\n", matrix_scan_count);
 | 
					        dprintf("matrix scan frequency: %lu\n", matrix_scan_count);
 | 
				
			||||||
#    endif
 | 
					#    endif
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user