summaryrefslogtreecommitdiffstats
path: root/protocol/usb_hid/leonardo_led.h
diff options
context:
space:
mode:
authortmk <hasu@tmk-kbd.com>2015-04-09 18:25:48 +0200
committertmk <hasu@tmk-kbd.com>2015-04-09 18:25:48 +0200
commit6746e37088ce8ba03529c1226bd216705edb2b1f (patch)
treea256db88ec3e9e8b1b70839fcd9459d972ce26e0 /protocol/usb_hid/leonardo_led.h
parentb4e2d325f355a4d083106476393775e75e11f284 (diff)
downloadqmk_firmware-6746e37088ce8ba03529c1226bd216705edb2b1f.tar.gz
qmk_firmware-6746e37088ce8ba03529c1226bd216705edb2b1f.tar.xz
Remove core library and build files
Diffstat (limited to 'protocol/usb_hid/leonardo_led.h')
-rw-r--r--protocol/usb_hid/leonardo_led.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/protocol/usb_hid/leonardo_led.h b/protocol/usb_hid/leonardo_led.h
deleted file mode 100644
index 6f67a88f5..000000000
--- a/protocol/usb_hid/leonardo_led.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef LEONARDO_LED_H
-#define LEONARDO_LED_H
-
-// Leonardo "TX" LED for debug
-#define LED_TX_INIT (DDRD |= (1<<5))
-#define LED_TX_ON (PORTD &= ~(1<<5))
-#define LED_TX_OFF (PORTD |= (1<<5))
-#define LED_TX_TOGGLE (PORTD ^= (1<<5))
-
-#endif