diff options
author | fauxpark <fauxpark@gmail.com> | 2019-07-16 16:05:07 +1000 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-07-15 23:05:07 -0700 |
commit | 26bbf6a66a6c1f606a64acafec3afdf9d3ad7e96 (patch) | |
tree | 3a3ca13af28b73fc5f49becd640e12e409759bdf /quantum/quantum.c | |
parent | f14629ed1cd7c7ec9089604d64f29a99981558e8 (diff) | |
download | qmk_firmware-26bbf6a66a6c1f606a64acafec3afdf9d3ad7e96.tar.gz qmk_firmware-26bbf6a66a6c1f606a64acafec3afdf9d3ad7e96.zip |
Remove lock LED example in quantum.c (#5636)
* Use GPIO helper defines in backlighting
* While I'm here, fix up the lock LED example too
* Remove the example altogether, it's already documented
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 6530738b7..44635fe3e 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
@@ -1581,23 +1581,6 @@ void led_init_ports(void) | |||
1581 | __attribute__ ((weak)) | 1581 | __attribute__ ((weak)) |
1582 | void led_set(uint8_t usb_led) | 1582 | void led_set(uint8_t usb_led) |
1583 | { | 1583 | { |
1584 | |||
1585 | // Example LED Code | ||
1586 | // | ||
1587 | // // Using PE6 Caps Lock LED | ||
1588 | // if (usb_led & (1<<USB_LED_CAPS_LOCK)) | ||
1589 | // { | ||
1590 | // // Output high. | ||
1591 | // DDRE |= (1<<6); | ||
1592 | // PORTE |= (1<<6); | ||
1593 | // } | ||
1594 | // else | ||
1595 | // { | ||
1596 | // // Output low. | ||
1597 | // DDRE &= ~(1<<6); | ||
1598 | // PORTE &= ~(1<<6); | ||
1599 | // } | ||
1600 | |||
1601 | #if defined(BACKLIGHT_CAPS_LOCK) && defined(BACKLIGHT_ENABLE) | 1584 | #if defined(BACKLIGHT_CAPS_LOCK) && defined(BACKLIGHT_ENABLE) |
1602 | // Use backlight as Caps Lock indicator | 1585 | // Use backlight as Caps Lock indicator |
1603 | uint8_t bl_toggle_lvl = 0; | 1586 | uint8_t bl_toggle_lvl = 0; |