1
0
Fork 0

Refactor to use led config - Part 4 (#10967)

* Refactor to use led config

* Refactor to use led_update_kb
This commit is contained in:
Joel Challis 2020-11-21 19:11:50 +00:00 committed by GitHub
parent 23222625c2
commit 95fd2ce81a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 36 additions and 230 deletions

View file

@ -16,7 +16,6 @@
*/
#include "hal.h"
#include "led.h"
#include "printf.h"
#ifdef BACKLIGHT_ENABLE
@ -40,14 +39,3 @@ void backlight_set(uint8_t level) {
}
}
#endif
void led_set_kb(uint8_t usb_led) {
printf("led_set_kb(%d)\n", usb_led);
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
// Turn capslock on
palSetPad(GPIOB, 7);
} else {
// Turn capslock off
palClearPad(GPIOB, 7);
}
}