Add keyboard report debug print on V-USB.
This commit is contained in:
		
							parent
							
								
									fe71523443
								
							
						
					
					
						commit
						7be605cce7
					
				@ -40,10 +40,15 @@ static uint8_t kbuf_tail = 0;
 | 
			
		||||
void vusb_transfer_keyboard(void)
 | 
			
		||||
{
 | 
			
		||||
    if (usbInterruptIsReady()) {
 | 
			
		||||
       if (kbuf_head != kbuf_tail) {
 | 
			
		||||
        if (kbuf_head != kbuf_tail) {
 | 
			
		||||
            usbSetInterrupt((void *)&kbuf[kbuf_tail], sizeof(report_keyboard_t));
 | 
			
		||||
            if (!debug_keyboard) {
 | 
			
		||||
                print("keys: ");
 | 
			
		||||
                for (int i = 0; i < REPORT_KEYS; i++) { phex(kbuf[kbuf_tail].keys[i]); print(" "); }
 | 
			
		||||
                print(" mods: "); phex((kbuf[kbuf_tail]).mods); print("\n");
 | 
			
		||||
            }
 | 
			
		||||
            kbuf_tail = (kbuf_tail + 1) % KBUF_SIZE;
 | 
			
		||||
       }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user