mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 13:22:31 +01:00 
			
		
		
		
	Map num lock and caps lock LED events to the RXLED and TXLED
This commit is contained in:
		
							parent
							
								
									e9944bfc8e
								
							
						
					
					
						commit
						a6be48681a
					
				| @ -23,4 +23,21 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||||||
|             break; |             break; | ||||||
|     } |     } | ||||||
|     return true; |     return true; | ||||||
| } | } | ||||||
|  | 
 | ||||||
|  | void led_set_user(uint8_t usb_led) { | ||||||
|  | 
 | ||||||
|  |   /* Map RXLED to USB_LED_NUM_LOCK */ | ||||||
|  | 	if (usb_led & (1 << USB_LED_NUM_LOCK)) { | ||||||
|  | 		DDRB |= (1 << 0); PORTB &= ~(1 << 0); | ||||||
|  | 	} else { | ||||||
|  | 		DDRB &= ~(1 << 0); PORTB &= ~(1 << 0); | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
|  |   /* Map TXLED to USB_LED_CAPS_LOCK */ | ||||||
|  | 	if (usb_led & (1 << USB_LED_CAPS_LOCK)) { | ||||||
|  | 		DDRD |= (1 << 5); PORTD &= ~(1 << 5); | ||||||
|  | 	} else { | ||||||
|  | 		DDRD &= ~(1 << 5); PORTD &= ~(1 << 5); | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Emily Soldal
						Emily Soldal