diff options
Diffstat (limited to 'keyboards/primekb')
| -rw-r--r-- | keyboards/primekb/prime_e/keymaps/default/keymap.c | 5 | ||||
| -rw-r--r-- | keyboards/primekb/prime_e/keymaps/via/keymap.c | 5 | ||||
| -rw-r--r-- | keyboards/primekb/prime_e/prime_e.c | 6 | ||||
| -rw-r--r-- | keyboards/primekb/prime_o/keymaps/default/keymap.c | 12 | ||||
| -rw-r--r-- | keyboards/primekb/prime_o/prime_o.c | 27 | ||||
| -rw-r--r-- | keyboards/primekb/prime_r/keymaps/default/keymap.c | 10 | ||||
| -rw-r--r-- | keyboards/primekb/prime_r/prime_r.c | 27 |
7 files changed, 0 insertions, 92 deletions
diff --git a/keyboards/primekb/prime_e/keymaps/default/keymap.c b/keyboards/primekb/prime_e/keymaps/default/keymap.c index 65b2f67a3..08067b313 100644 --- a/keyboards/primekb/prime_e/keymaps/default/keymap.c +++ b/keyboards/primekb/prime_e/keymaps/default/keymap.c | |||
| @@ -57,11 +57,6 @@ void matrix_init_user(void) { | |||
| 57 | writePinLow(B3); | 57 | writePinLow(B3); |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | void matrix_scan_user(void) { | ||
| 61 | |||
| 62 | } | ||
| 63 | |||
| 64 | |||
| 65 | void led_set_user(uint8_t usb_led) { | 60 | void led_set_user(uint8_t usb_led) { |
| 66 | if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) { | 61 | if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) { |
| 67 | writePinHigh(B2); | 62 | writePinHigh(B2); |
diff --git a/keyboards/primekb/prime_e/keymaps/via/keymap.c b/keyboards/primekb/prime_e/keymaps/via/keymap.c index 960d1dc39..195f845cc 100644 --- a/keyboards/primekb/prime_e/keymaps/via/keymap.c +++ b/keyboards/primekb/prime_e/keymaps/via/keymap.c | |||
| @@ -85,11 +85,6 @@ void matrix_init_user(void) { | |||
| 85 | writePinLow(B3); | 85 | writePinLow(B3); |
| 86 | } | 86 | } |
| 87 | 87 | ||
| 88 | void matrix_scan_user(void) { | ||
| 89 | |||
| 90 | } | ||
| 91 | |||
| 92 | |||
| 93 | void led_set_user(uint8_t usb_led) { | 88 | void led_set_user(uint8_t usb_led) { |
| 94 | if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) { | 89 | if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) { |
| 95 | writePinHigh(B2); | 90 | writePinHigh(B2); |
diff --git a/keyboards/primekb/prime_e/prime_e.c b/keyboards/primekb/prime_e/prime_e.c index bd51ce008..8e30f3c5f 100644 --- a/keyboards/primekb/prime_e/prime_e.c +++ b/keyboards/primekb/prime_e/prime_e.c | |||
| @@ -14,9 +14,3 @@ | |||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #include "prime_e.h" | 16 | #include "prime_e.h" |
| 17 | |||
| 18 | void led_set_kb(uint8_t usb_led) { | ||
| 19 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 20 | |||
| 21 | led_set_user(usb_led); | ||
| 22 | } | ||
diff --git a/keyboards/primekb/prime_o/keymaps/default/keymap.c b/keyboards/primekb/prime_o/keymaps/default/keymap.c index a2d9e807c..b3ca2b15f 100644 --- a/keyboards/primekb/prime_o/keymaps/default/keymap.c +++ b/keyboards/primekb/prime_o/keymaps/default/keymap.c | |||
| @@ -63,15 +63,3 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 63 | } | 63 | } |
| 64 | return true; | 64 | return true; |
| 65 | } | 65 | } |
| 66 | |||
| 67 | void matrix_init_user(void) { | ||
| 68 | |||
| 69 | } | ||
| 70 | |||
| 71 | void matrix_scan_user(void) { | ||
| 72 | |||
| 73 | } | ||
| 74 | |||
| 75 | void led_set_user(uint8_t usb_led) { | ||
| 76 | |||
| 77 | } | ||
diff --git a/keyboards/primekb/prime_o/prime_o.c b/keyboards/primekb/prime_o/prime_o.c index d603cc6c9..369347cf4 100644 --- a/keyboards/primekb/prime_o/prime_o.c +++ b/keyboards/primekb/prime_o/prime_o.c | |||
| @@ -14,30 +14,3 @@ | |||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #include "prime_o.h" | 16 | #include "prime_o.h" |
| 17 | |||
| 18 | void matrix_init_kb(void) { | ||
| 19 | // put your keyboard start-up code here | ||
| 20 | // runs once when the firmware starts up | ||
| 21 | |||
| 22 | matrix_init_user(); | ||
| 23 | } | ||
| 24 | |||
| 25 | void matrix_scan_kb(void) { | ||
| 26 | // put your looping keyboard code here | ||
| 27 | // runs every cycle (a lot) | ||
| 28 | |||
| 29 | matrix_scan_user(); | ||
| 30 | } | ||
| 31 | |||
| 32 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
| 33 | // put your per-action keyboard code here | ||
| 34 | // runs for every action, just before processing by the firmware | ||
| 35 | |||
| 36 | return process_record_user(keycode, record); | ||
| 37 | } | ||
| 38 | |||
| 39 | void led_set_kb(uint8_t usb_led) { | ||
| 40 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 41 | |||
| 42 | led_set_user(usb_led); | ||
| 43 | } | ||
diff --git a/keyboards/primekb/prime_r/keymaps/default/keymap.c b/keyboards/primekb/prime_r/keymaps/default/keymap.c index afff0d7da..885a37e08 100644 --- a/keyboards/primekb/prime_r/keymaps/default/keymap.c +++ b/keyboards/primekb/prime_r/keymaps/default/keymap.c | |||
| @@ -52,13 +52,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 52 | ), | 52 | ), |
| 53 | 53 | ||
| 54 | }; | 54 | }; |
| 55 | |||
| 56 | void matrix_init_user(void) { | ||
| 57 | } | ||
| 58 | |||
| 59 | void matrix_scan_user(void) { | ||
| 60 | } | ||
| 61 | |||
| 62 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 63 | return true; | ||
| 64 | } | ||
diff --git a/keyboards/primekb/prime_r/prime_r.c b/keyboards/primekb/prime_r/prime_r.c index 845769dae..3a08bed59 100644 --- a/keyboards/primekb/prime_r/prime_r.c +++ b/keyboards/primekb/prime_r/prime_r.c | |||
| @@ -14,30 +14,3 @@ | |||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #include "prime_r.h" | 16 | #include "prime_r.h" |
| 17 | |||
| 18 | void matrix_init_kb(void) { | ||
| 19 | // put your keyboard start-up code here | ||
| 20 | // runs once when the firmware starts up | ||
| 21 | |||
| 22 | matrix_init_user(); | ||
| 23 | } | ||
| 24 | |||
| 25 | void matrix_scan_kb(void) { | ||
| 26 | // put your looping keyboard code here | ||
| 27 | // runs every cycle (a lot) | ||
| 28 | |||
| 29 | matrix_scan_user(); | ||
| 30 | } | ||
| 31 | |||
| 32 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
| 33 | // put your per-action keyboard code here | ||
| 34 | // runs for every action, just before processing by the firmware | ||
| 35 | |||
| 36 | return process_record_user(keycode, record); | ||
| 37 | } | ||
| 38 | |||
| 39 | void led_set_kb(uint8_t usb_led) { | ||
| 40 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
| 41 | |||
| 42 | led_set_user(usb_led); | ||
| 43 | } | ||
