summaryrefslogtreecommitdiffstats
path: root/keyboards/kinesis/stapelberg/stapelberg.c
diff options
context:
space:
mode:
authorXyverz <xyverz@gmail.com>2018-08-04 18:01:26 +0200
committerDrashna Jaelre <drashna@live.com>2018-08-04 18:01:26 +0200
commit3e8f2728732b20b5b6af63db73ad8b6f2be18823 (patch)
treed2440b5f7aaed4522ad2dd91c2dbd647bf151963 /keyboards/kinesis/stapelberg/stapelberg.c
parentf8a915a2dbed01df73f14fc9baef60f4265d42e9 (diff)
downloadqmk_firmware-3e8f2728732b20b5b6af63db73ad8b6f2be18823.tar.gz
qmk_firmware-3e8f2728732b20b5b6af63db73ad8b6f2be18823.tar.xz
Keyboard: LED fixes for Kinesis Stapelberg controller, and keymap changes (#3564)
* Rules for vitamins_included Added a section to disable RGB underglow for the Let's Split Vitamins Included board. * fixing ortho_4x12 configs * Using upstream/master version instead * Additions and Corrections Corrected the Kinesis/Stapelberg's .c file to allow LEDs to work Removed excess cruft from my Kinesis keymap to reflect this change Other minor tweaks and adjustments to my ortho_4x12 and 5x12 layouts * Updated readme
Diffstat (limited to 'keyboards/kinesis/stapelberg/stapelberg.c')
-rw-r--r--keyboards/kinesis/stapelberg/stapelberg.c86
1 files changed, 28 insertions, 58 deletions
diff --git a/keyboards/kinesis/stapelberg/stapelberg.c b/keyboards/kinesis/stapelberg/stapelberg.c
index 94d15316d..af407ac4f 100644
--- a/keyboards/kinesis/stapelberg/stapelberg.c
+++ b/keyboards/kinesis/stapelberg/stapelberg.c
@@ -27,65 +27,35 @@ bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
}
void led_init_ports() {
- // * Set our LED pins as output
- DDRF |= (1<<0); // Keypad LED
- DDRF |= (1<<1); // ScrLock LED
- DDRF |= (1<<2); // NumLock LED
- DDRF |= (1<<3); // CapsLock LED
+ // * Set our LED pins as output
+ DDRF |= (1<<0); // Keypad LED
+ DDRF |= (1<<1); // ScrLock LED
+ DDRF |= (1<<2); // NumLock LED
+ DDRF |= (1<<3); // CapsLock LED
}
void led_set_kb(uint8_t usb_led) {
- DDRF |= (1<<0); // Keypad LED
- if (usb_led & (1<<USB_LED_COMPOSE)) {
- PORTF |= (1<<0);
- } else {
- PORTF &= ~(1<<0);
- }
-
- DDRF |= (1<<1); // ScrLock LED
- if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
- PORTF |= (1<<1);
- } else {
- PORTF &= ~(1<<1);
- }
-
- DDRF |= (1<<2); // NumLock LED
- if (usb_led & (1<<USB_LED_NUM_LOCK)) {
- PORTF |= (1<<2);
- } else {
- PORTF &= ~(1<<2);
- }
-
- DDRF |= (1<<3); // CapsLock LED
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- PORTF |= (1<<3);
- } else {
- PORTF &= ~(1<<3);
- }
-
- led_set_user(usb_led);
-
-inline void kinesis_keypad_led_on(void) { DDRF |= (1<<0); PORTF |= (1<<0); }
-inline void kinesis_scroll_led_on(void) { DDRF |= (1<<1); PORTF |= (1<<1); }
-inline void kinesis_num_led_on(void) { DDRF |= (1<<2); PORTF |= (1<<2); }
-inline void kinesis_caps_led_on(void) { DDRF |= (1<<3); PORTF |= (1<<3); }
-
-inline void kinesis_keypad_led_off(void) { DDRF &= ~(1<<0); PORTF &= ~(1<<0); }
-inline void kinesis_scroll_led_off(void) { DDRF &= ~(1<<1); PORTF &= ~(1<<1); }
-inline void kinesis_num_led_off(void) { DDRF &= ~(1<<2); PORTF &= ~(1<<2); }
-inline void kinesis_caps_led_off(void) { DDRF &= ~(1<<3); PORTF &= ~(1<<3); }
-
-
+ if (usb_led & (1<<USB_LED_COMPOSE)) {
+ PORTF &= ~(1<<0);
+ } else {
+ PORTF |= (1<<0);
+ }
+
+ if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
+ PORTF &= ~(1<<1);
+ } else {
+ PORTF |= (1<<1);
+ }
+
+ if (usb_led & (1<<USB_LED_NUM_LOCK)) {
+ PORTF &= ~(1<<2);
+ } else {
+ PORTF |= (1<<2);
+ }
+
+ if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
+ PORTF &= ~(1<<3);
+ } else {
+ PORTF |= (1<<3);
+ }
}
-
-/* This is the old code that has the port information in it.
-inline void kinesis_keypad_led_on(void) { DDRF |= (1<<0); PORTF |= (1<<0); }
-inline void kinesis_scroll_led_on(void) { DDRF |= (1<<1); PORTF |= (1<<1); }
-inline void kinesis_num_led_on(void) { DDRF |= (1<<2); PORTF |= (1<<2); }
-inline void kinesis_caps_led_on(void) { DDRF |= (1<<3); PORTF |= (1<<3); }
-
-inline void kinesis_keypad_led_off(void) { DDRF &= ~(1<<0); PORTF &= ~(1<<0); }
-inline void kinesis_scroll_led_off(void) { DDRF &= ~(1<<1); PORTF &= ~(1<<1); }
-inline void kinesis_num_led_off(void) { DDRF &= ~(1<<2); PORTF &= ~(1<<2); }
-inline void kinesis_caps_led_off(void) { DDRF &= ~(1<<3); PORTF &= ~(1<<3); }
-*/