summaryrefslogtreecommitdiffstats
path: root/quantum
diff options
context:
space:
mode:
authorIBNobody <protospherex@gmail.com>2016-03-23 02:58:44 +0100
committerIBNobody <protospherex@gmail.com>2016-03-23 02:58:44 +0100
commit10491ba21f91526c2011f43523dcde8710706dff (patch)
treea83989af114543d56d7e27697cee3348ce9d25bf /quantum
parentec62d9e85cab5cf166241b0536120d005fa7c898 (diff)
downloadqmk_firmware-10491ba21f91526c2011f43523dcde8710706dff.tar.gz
qmk_firmware-10491ba21f91526c2011f43523dcde8710706dff.tar.xz
Fixed LED Function Calls
Fixed LED indicator function calls to match how the matrix init function calls are formatted.
Diffstat (limited to 'quantum')
-rw-r--r--quantum/led.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/quantum/led.c b/quantum/led.c
index a53e94043..42525090b 100644
--- a/quantum/led.c
+++ b/quantum/led.c
@@ -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);
}