summaryrefslogtreecommitdiff
path: root/keyboards/vision_division/vision_division.c
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-08-29 08:20:25 +1000
committerNick Brassel <nick@tzarc.org>2021-08-29 08:20:25 +1000
commitf061ca497464fe85284906fb163a33eaee7a91ef (patch)
tree33ef1bfb529aed382e8526c607c4e18717f92571 /keyboards/vision_division/vision_division.c
parentff65185dec6f97be1eb49f17cea526a0d0bbf3d6 (diff)
parent4bad375d7c09d949a9dcdd4feba147c9c7a67ec6 (diff)
Breaking changes develop merge to master, 2021Q3 edition. (#14196)
Diffstat (limited to 'keyboards/vision_division/vision_division.c')
-rw-r--r--keyboards/vision_division/vision_division.c68
1 files changed, 0 insertions, 68 deletions
diff --git a/keyboards/vision_division/vision_division.c b/keyboards/vision_division/vision_division.c
deleted file mode 100644
index a0e0f449c4..0000000000
--- a/keyboards/vision_division/vision_division.c
+++ /dev/null
@@ -1,68 +0,0 @@
-#include "vision_division.h"
-
-void matrix_init_kb(void) {
- // put your keyboard start-up code here
- // runs once when the firmware starts up
-
- matrix_init_user();
-}
-
-void matrix_scan_kb(void) {
- // put your looping keyboard code here
- // runs every cycle (a lot)
-
- matrix_scan_user();
-}
-
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- // put your per-action keyboard code here
- // runs for every action, just before processing by the firmware
-
- return process_record_user(keycode, record);
-}
-
-void led_set_kb(uint8_t usb_led) {
- // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
-
- if (usb_led & (1 << USB_LED_CAPS_LOCK))
- {
- // HI
- DDRD |= (1<<4);
- PORTD |= (1<<4);
- }
- else
- {
- // Hi-Z
- DDRD &= ~(1<<4);
- PORTD &= ~(1<<4);
- }
-
- if (usb_led & (1 << USB_LED_NUM_LOCK))
- {
- // HI
- DDRD |= (1<<5);
- PORTD |= (1<<5);
- }
- else
- {
- // Hi-Z
- DDRD &= ~(1<<5);
- PORTD &= ~(1<<5);
- }
-
- if (usb_led & (1 << USB_LED_SCROLL_LOCK))
- {
- // HI
- DDRD |= (1<<6);
- PORTD |= (1<<6);
- }
- else
- {
- // Hi-Z
- DDRD &= ~(1<<6);
- PORTD &= ~(1<<6);
- }
-
- led_set_user(usb_led);
-}
-