1
0
Fork 0

Fixed LED Function Calls

Fixed LED indicator function calls to match how the matrix init function
calls are formatted.
This commit is contained in:
IBNobody 2016-03-22 20:58:44 -05:00
parent ec62d9e85c
commit 10491ba21f
4 changed files with 22 additions and 34 deletions

View 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);
}