mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-28 14:10:13 +00:00
3f419dc872
* Unconditionally call led_init_ports * Another call to led_init_ports
15 lines
257 B
C
15 lines
257 B
C
#include "rev3.h"
|
|
#include "led.h"
|
|
|
|
void led_init_ports(void) {
|
|
// * Set our LED pins as output
|
|
DDRE |= (1 << 6);
|
|
|
|
//Set output high, so the capslock led is off
|
|
PORTE |= (1 << 6);
|
|
}
|
|
|
|
void led_set_kb(uint8_t usb_led) {
|
|
led_set_user(usb_led);
|
|
}
|