diff options
author | Joel Challis <git@zvecr.com> | 2023-02-11 03:47:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-11 03:47:17 +0000 |
commit | 11d49d00e74618500e5c51e4c7f858eb906ccea8 (patch) | |
tree | ee827f3ed92a56861f6f5bf1d5f33d6068458d2c /keyboards/bpiphany/pegasushoof | |
parent | 99918945149f98cf73f9365b0ad49a2fc07d1152 (diff) |
Remove matrix_init_quantum/matrix_scan_quantum (#19806)
Diffstat (limited to 'keyboards/bpiphany/pegasushoof')
-rw-r--r-- | keyboards/bpiphany/pegasushoof/2013/matrix.c | 4 | ||||
-rw-r--r-- | keyboards/bpiphany/pegasushoof/2015/matrix.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/bpiphany/pegasushoof/2013/matrix.c b/keyboards/bpiphany/pegasushoof/2013/matrix.c index 3250e71fe6..3b1bd5663f 100644 --- a/keyboards/bpiphany/pegasushoof/2013/matrix.c +++ b/keyboards/bpiphany/pegasushoof/2013/matrix.c @@ -80,7 +80,7 @@ void matrix_init(void) matrix_debouncing[i] = 0; } - matrix_init_quantum(); + matrix_init_kb(); } uint8_t matrix_scan(void) @@ -109,7 +109,7 @@ uint8_t matrix_scan(void) } } - matrix_scan_quantum(); + matrix_scan_kb(); return 1; } diff --git a/keyboards/bpiphany/pegasushoof/2015/matrix.c b/keyboards/bpiphany/pegasushoof/2015/matrix.c index 2b142f9fc8..6fc1fd6e9e 100644 --- a/keyboards/bpiphany/pegasushoof/2015/matrix.c +++ b/keyboards/bpiphany/pegasushoof/2015/matrix.c @@ -70,7 +70,7 @@ void matrix_init(void) matrix_debouncing[i] = 0; } - matrix_init_quantum(); + matrix_init_kb(); } uint8_t matrix_scan(void) @@ -90,7 +90,7 @@ uint8_t matrix_scan(void) } debounce(matrix_debouncing, matrix, matrix_rows(), changed); - matrix_scan_quantum(); + matrix_scan_kb(); return (uint8_t)changed; } |