summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-07-16 16:05:07 +1000
committerskullydazed <skullydazed@users.noreply.github.com>2019-07-15 23:05:07 -0700
commit26bbf6a66a6c1f606a64acafec3afdf9d3ad7e96 (patch)
tree3a3ca13af28b73fc5f49becd640e12e409759bdf
parentf14629ed1cd7c7ec9089604d64f29a99981558e8 (diff)
Remove lock LED example in quantum.c (#5636)0.6.422
* 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
-rw-r--r--quantum/quantum.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c
index 6530738b71..44635fe3e1 100644
--- a/quantum/quantum.c
+++ b/quantum/quantum.c
@@ -1581,23 +1581,6 @@ void led_init_ports(void)
__attribute__ ((weak))
void led_set(uint8_t usb_led)
{
-
- // Example LED Code
- //
- // // Using PE6 Caps Lock LED
- // if (usb_led & (1<<USB_LED_CAPS_LOCK))
- // {
- // // Output high.
- // DDRE |= (1<<6);
- // PORTE |= (1<<6);
- // }
- // else
- // {
- // // Output low.
- // DDRE &= ~(1<<6);
- // PORTE &= ~(1<<6);
- // }
-
#if defined(BACKLIGHT_CAPS_LOCK) && defined(BACKLIGHT_ENABLE)
// Use backlight as Caps Lock indicator
uint8_t bl_toggle_lvl = 0;