aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bpiphany/pegasushoof/2015/2015.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bpiphany/pegasushoof/2015/2015.c')
-rw-r--r--keyboards/bpiphany/pegasushoof/2015/2015.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/keyboards/bpiphany/pegasushoof/2015/2015.c b/keyboards/bpiphany/pegasushoof/2015/2015.c
index 62841e7af..401dc2633 100644
--- a/keyboards/bpiphany/pegasushoof/2015/2015.c
+++ b/keyboards/bpiphany/pegasushoof/2015/2015.c
@@ -23,36 +23,3 @@ extern inline void ph_caps_led_off(void);
23 23
24extern inline void ph_sclk_led_on(void); 24extern inline void ph_sclk_led_on(void);
25extern inline void ph_sclk_led_off(void); 25extern inline void ph_sclk_led_off(void);
26
27__attribute__ ((weak))
28void matrix_init_user(void) {
29};
30
31__attribute__ ((weak))
32void matrix_scan_user(void) {
33}
34
35__attribute__ ((weak))
36bool process_action_user(keyrecord_t *record) {
37 return true;
38}
39
40__attribute__ ((weak))
41void led_set_user(uint8_t usb_led) {
42}
43
44void matrix_init_kb(void) {
45 matrix_init_user();
46}
47
48void matrix_scan_kb(void) {
49 matrix_scan_user();
50}
51
52bool process_action_kb(keyrecord_t *record) {
53 return process_action_user(record);
54}
55
56void led_set_kb(uint8_t usb_led) {
57 led_set_user(usb_led);
58}