diff options
Diffstat (limited to 'keyboards/jj40/keymaps/oscillope/backlight.c')
-rw-r--r-- | keyboards/jj40/keymaps/oscillope/backlight.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/keyboards/jj40/keymaps/oscillope/backlight.c b/keyboards/jj40/keymaps/oscillope/backlight.c index a4cb66e0c..14c677cd6 100644 --- a/keyboards/jj40/keymaps/oscillope/backlight.c +++ b/keyboards/jj40/keymaps/oscillope/backlight.c | |||
@@ -9,10 +9,10 @@ | |||
9 | #include <avr/interrupt.h> | 9 | #include <avr/interrupt.h> |
10 | 10 | ||
11 | // Port D: digital pins of the AVR chipset | 11 | // Port D: digital pins of the AVR chipset |
12 | #define NUMLOCK_PORT (1 << 1) // 1st pin of Port D (digital) | 12 | #define NUMLOCK_PORT (1 << 0) // D0 |
13 | #define CAPSLOCK_PORT (1 << 2) // 2nd pin | 13 | #define CAPSLOCK_PORT (1 << 1) // D1 |
14 | #define BACKLIGHT_PORT (1 << 4) // 4th pin | 14 | #define BACKLIGHT_PORT (1 << 4) // D4 |
15 | #define SCROLLLOCK_PORT (1 << 6) // 6th pin | 15 | #define SCROLLLOCK_PORT (1 << 6) // D6 |
16 | 16 | ||
17 | /** | 17 | /** |
18 | * References | 18 | * References |
@@ -25,6 +25,7 @@ | |||
25 | 25 | ||
26 | // @Override | 26 | // @Override |
27 | // turn LEDs on and off depending on USB caps/num/scroll lock states. | 27 | // turn LEDs on and off depending on USB caps/num/scroll lock states. |
28 | __attribute__ ((weak)) | ||
28 | void led_set_user(uint8_t usb_led) { | 29 | void led_set_user(uint8_t usb_led) { |
29 | /* It appears that these cause the v1 JJ40 PCB to hang. | 30 | /* It appears that these cause the v1 JJ40 PCB to hang. |
30 | * I haven't looked into why, but I don't have any LEDs on my board anyway. */ | 31 | * I haven't looked into why, but I don't have any LEDs on my board anyway. */ |