diff options
Diffstat (limited to 'keyboards/ymd96')
| -rw-r--r-- | keyboards/ymd96/backlight.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/keyboards/ymd96/backlight.c b/keyboards/ymd96/backlight.c index 36c556387..f3f2b7a05 100644 --- a/keyboards/ymd96/backlight.c +++ b/keyboards/ymd96/backlight.c | |||
| @@ -19,8 +19,8 @@ | |||
| 19 | // Port D: digital pins of the AVR chipset | 19 | // Port D: digital pins of the AVR chipset |
| 20 | #define NUMLOCK_PORT (1 << 0) // 0th pin of Port D (digital) | 20 | #define NUMLOCK_PORT (1 << 0) // 0th pin of Port D (digital) |
| 21 | #define CAPSLOCK_PORT (1 << 1) // 1st pin | 21 | #define CAPSLOCK_PORT (1 << 1) // 1st pin |
| 22 | #define BACKLIGHT_PORT (1 << 4) // 4th pin | 22 | #define BACKLIGHT_PORT (1 << 4) // D4 |
| 23 | //#define SCROLLLOCK_PORT (1 << 6) // 6th pin | 23 | //#define SCROLLLOCK_PORT (1 << 6) // D6 |
| 24 | 24 | ||
| 25 | #define TIMER_CLK_DIV64 0x03 ///< Timer clocked at F_CPU/64 | 25 | #define TIMER_CLK_DIV64 0x03 ///< Timer clocked at F_CPU/64 |
| 26 | #define TIMER1PRESCALE TIMER_CLK_DIV64 ///< timer 1 prescaler default | 26 | #define TIMER1PRESCALE TIMER_CLK_DIV64 ///< timer 1 prescaler default |
| @@ -43,6 +43,7 @@ extern backlight_config_t backlight_config; | |||
| 43 | 43 | ||
| 44 | // @Override | 44 | // @Override |
| 45 | // turn LEDs on and off depending on USB caps/num/scroll lock states. | 45 | // turn LEDs on and off depending on USB caps/num/scroll lock states. |
| 46 | __attribute__ ((weak)) | ||
| 46 | void led_set_user(uint8_t usb_led) { | 47 | void led_set_user(uint8_t usb_led) { |
| 47 | if (usb_led & (1 << USB_LED_NUM_LOCK)) { | 48 | if (usb_led & (1 << USB_LED_NUM_LOCK)) { |
| 48 | // turn on | 49 | // turn on |
