summaryrefslogtreecommitdiff
path: root/keyboards/freyr/freyr.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-11-04 10:39:11 +1100
committerGitHub <noreply@github.com>2020-11-04 10:39:11 +1100
commite024147ce5871a39a13ce5485c7afed03eabff5c (patch)
tree6137b1cf9d05ddc4042a03a03d7045f996b8ca22 /keyboards/freyr/freyr.c
parentc60cafae419f8fe409f9cdb3274bbf6d02973f7c (diff)
downloadqmk_firmware-e024147ce5871a39a13ce5485c7afed03eabff5c.tar.gz
qmk_firmware-e024147ce5871a39a13ce5485c7afed03eabff5c.zip
Freyr refactor (#10833)
Diffstat (limited to 'keyboards/freyr/freyr.c')
-rw-r--r--keyboards/freyr/freyr.c35
1 files changed, 13 insertions, 22 deletions
diff --git a/keyboards/freyr/freyr.c b/keyboards/freyr/freyr.c
index 68c26294f5..336b327110 100644
--- a/keyboards/freyr/freyr.c
+++ b/keyboards/freyr/freyr.c
@@ -13,33 +13,24 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "freyr.h"
+#include "freyr.h"
void matrix_init_kb(void) {
- matrix_init_user();
- led_init_ports();
-};
+ matrix_init_user();
+ led_init_ports();
+}
void led_init_ports(void) {
- setPinOutput(B3);
- setPinOutput(B7);
+ setPinOutput(B3);
+ setPinOutput(B7);
}
-void led_set_kb(uint8_t usb_led) {
- if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
- // Turn Caps Lock LED on
- writePinLow(B3);
- } else {
- // Turn Caps Lock LED off
- writePinHigh(B3);
- }
- if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
- // Turn Scroll Lock LED on
- writePinLow(B7);
- } else {
- // Turn Scroll Lock LED off
- writePinHigh(B7);
- }
- led_set_user(usb_led);
+bool led_update_kb(led_t led_state) {
+ if (led_update_user(led_state)) {
+ writePin(B3, !led_state.caps_lock);
+ writePin(B7, !led_state.scroll_lock);
+ }
+
+ return true;
}