]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/led.c
Adding clueboard/cluepad support to qmk
[qmk_firmware.git] / quantum / led.c
index a53e940436304e73a9c3bbd55e9fe0a7332a542b..9cdb8a5c20948ccf20d1f899c17e9a73a37e5f53 100644 (file)
@@ -16,16 +16,19 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <avr/io.h>
-#include <stddef.h>
+#include "stdint.h"
 #include "led.h"
 
 __attribute__ ((weak))
-void led_set_kb(uint8_t usb_led) {
-    return NULL;
-};
+void led_set_kb(uint8_t usb_led) {
+
+}
 
 void led_set(uint8_t usb_led)
 {
+
+       // Example LED Code
+       //
     // // Using PE6 Caps Lock LED
     // if (usb_led & (1<<USB_LED_CAPS_LOCK))
     // {
@@ -40,9 +43,5 @@ void led_set(uint8_t usb_led)
     //     PORTE &= ~(1<<6);
     // }
 
-    if (led_set_kb) {
-        (*led_set_kb)(usb_led);
-    }
-
-    return;
+       led_set_kb(usb_led);
 }