aboutsummaryrefslogtreecommitdiff
path: root/keyboards/primekb/prime_e
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/primekb/prime_e')
-rw-r--r--keyboards/primekb/prime_e/keymaps/default/keymap.c5
-rw-r--r--keyboards/primekb/prime_e/keymaps/via/keymap.c5
-rw-r--r--keyboards/primekb/prime_e/prime_e.c6
3 files changed, 0 insertions, 16 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
60void matrix_scan_user(void) {
61
62}
63
64
65void led_set_user(uint8_t usb_led) { 60void 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
88void matrix_scan_user(void) {
89
90}
91
92
93void led_set_user(uint8_t usb_led) { 88void 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
18void 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}