diff options
| author | QMK Bot <hello@qmk.fm> | 2021-09-05 22:36:16 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2021-09-05 22:36:16 +0000 |
| commit | d72f29556a2bc113f30291b87293d63c9efab965 (patch) | |
| tree | c5bed47c2da94a7da592b8e4375583de5c0a49f1 /keyboards/bpiphany | |
| parent | 147289e173999b132f1b97835f8d57716a2bd376 (diff) | |
| parent | 1e1be4c229651703ef7c62784b704a859a3d13cf (diff) | |
| download | qmk_firmware-d72f29556a2bc113f30291b87293d63c9efab965.tar.gz qmk_firmware-d72f29556a2bc113f30291b87293d63c9efab965.zip | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/bpiphany')
| -rw-r--r-- | keyboards/bpiphany/pegasushoof/2015/matrix.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/keyboards/bpiphany/pegasushoof/2015/matrix.c b/keyboards/bpiphany/pegasushoof/2015/matrix.c index 42c5da3bc..b05869fed 100644 --- a/keyboards/bpiphany/pegasushoof/2015/matrix.c +++ b/keyboards/bpiphany/pegasushoof/2015/matrix.c | |||
| @@ -33,6 +33,18 @@ static matrix_row_t matrix_debouncing[MATRIX_ROWS]; | |||
| 33 | static matrix_row_t read_cols(void); | 33 | static matrix_row_t read_cols(void); |
| 34 | static void select_row(uint8_t col); | 34 | static void select_row(uint8_t col); |
| 35 | 35 | ||
| 36 | // user-defined overridable functions | ||
| 37 | |||
| 38 | __attribute__((weak)) void matrix_init_kb(void) { matrix_init_user(); } | ||
| 39 | |||
| 40 | __attribute__((weak)) void matrix_scan_kb(void) { matrix_scan_user(); } | ||
| 41 | |||
| 42 | __attribute__((weak)) void matrix_init_user(void) {} | ||
| 43 | |||
| 44 | __attribute__((weak)) void matrix_scan_user(void) {} | ||
| 45 | |||
| 46 | // helper functions | ||
| 47 | |||
| 36 | inline uint8_t matrix_rows(void) | 48 | inline uint8_t matrix_rows(void) |
| 37 | { | 49 | { |
| 38 | return MATRIX_ROWS; | 50 | return MATRIX_ROWS; |
