aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bpiphany/pegasushoof/2013/2013.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bpiphany/pegasushoof/2013/2013.c')
-rw-r--r--keyboards/bpiphany/pegasushoof/2013/2013.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/keyboards/bpiphany/pegasushoof/2013/2013.c b/keyboards/bpiphany/pegasushoof/2013/2013.c
index 7a489b22a..c9bd01a99 100644
--- a/keyboards/bpiphany/pegasushoof/2013/2013.c
+++ b/keyboards/bpiphany/pegasushoof/2013/2013.c
@@ -23,37 +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
28__attribute__ ((weak))
29void matrix_init_user(void) {
30};
31
32__attribute__ ((weak))
33void matrix_scan_user(void) {
34}
35
36__attribute__ ((weak))
37bool process_action_user(keyrecord_t *record) {
38 return true;
39}
40
41__attribute__ ((weak))
42void led_set_user(uint8_t usb_led) {
43}
44
45void matrix_init_kb(void) {
46 matrix_init_user();
47}
48
49void matrix_scan_kb(void) {
50 matrix_scan_user();
51}
52
53bool process_action_kb(keyrecord_t *record) {
54 return process_action_user(record);
55}
56
57void led_set_kb(uint8_t usb_led) {
58 led_set_user(usb_led);
59}