summaryrefslogtreecommitdiff
path: root/keyboards/clueboard/66_hotswap
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-11-21 19:11:50 +0000
committerGitHub <noreply@github.com>2020-11-21 19:11:50 +0000
commit95fd2ce81a394d972d922b7be34a99752aed9e31 (patch)
treef09ac6312037356da157ccd1304a0552c2bffadf /keyboards/clueboard/66_hotswap
parent23222625c201cd960a5b4a99ee52e74d4c13bba9 (diff)
Refactor to use led config - Part 4 (#10967)
* Refactor to use led config * Refactor to use led_update_kb
Diffstat (limited to 'keyboards/clueboard/66_hotswap')
-rw-r--r--keyboards/clueboard/66_hotswap/prototype/config.h2
-rw-r--r--keyboards/clueboard/66_hotswap/prototype/prototype.c30
2 files changed, 2 insertions, 30 deletions
diff --git a/keyboards/clueboard/66_hotswap/prototype/config.h b/keyboards/clueboard/66_hotswap/prototype/config.h
index 7679d08e52..f6ab6ba535 100644
--- a/keyboards/clueboard/66_hotswap/prototype/config.h
+++ b/keyboards/clueboard/66_hotswap/prototype/config.h
@@ -32,6 +32,8 @@
*/
#define NO_ACTION_TAPPING
+#define LED_CAPS_LOCK_PIN B4
+
/* Backlight configuration
*/
#define BACKLIGHT_LEVELS 1
diff --git a/keyboards/clueboard/66_hotswap/prototype/prototype.c b/keyboards/clueboard/66_hotswap/prototype/prototype.c
index 7c307be61a..4ce3dd65f7 100644
--- a/keyboards/clueboard/66_hotswap/prototype/prototype.c
+++ b/keyboards/clueboard/66_hotswap/prototype/prototype.c
@@ -1,20 +1,6 @@
#include "prototype.h"
-#include <avr/io.h>
-#include "backlight.h"
#include "print.h"
-void matrix_init_kb(void) {
- // put your keyboard start-up code here
- // runs once when the firmware starts up
- matrix_init_user();
- led_init_ports();
-}
-
-
-void matrix_scan_kb(void) {
- matrix_scan_user();
-}
-
void backlight_init_ports(void) {
print("init_backlight_pin()\n");
// Set our LED pins as output
@@ -41,19 +27,3 @@ void backlight_set(uint8_t level) {
PORTD &= ~(1<<1); // Arrows
}
}
-
-void led_init_ports() {
- // * Set our LED pins as output
- DDRB |= (1<<4);
-}
-
-void led_set_kb(uint8_t usb_led) {
- DDRB |= (1<<4);
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- // Turn capslock on
- PORTB |= (1<<4);
- } else {
- // Turn capslock off
- PORTB &= ~(1<<4);
- }
-}