aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bpiphany/ghost_squid/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bpiphany/ghost_squid/matrix.c')
-rw-r--r--keyboards/bpiphany/ghost_squid/matrix.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/keyboards/bpiphany/ghost_squid/matrix.c b/keyboards/bpiphany/ghost_squid/matrix.c
index 802d365cb8..ae48f5fc94 100644
--- a/keyboards/bpiphany/ghost_squid/matrix.c
+++ b/keyboards/bpiphany/ghost_squid/matrix.c
@@ -55,22 +55,22 @@ void select_col(uint8_t col) {
void matrix_init_custom(void) {
/* Column output pins */
- setPinOutput(D1);
- setPinOutput(D2);
- setPinOutput(D3);
- setPinOutput(D4);
- setPinOutput(D5);
- setPinOutput(D6);
+ gpio_set_pin_output(D1);
+ gpio_set_pin_output(D2);
+ gpio_set_pin_output(D3);
+ gpio_set_pin_output(D4);
+ gpio_set_pin_output(D5);
+ gpio_set_pin_output(D6);
/* Row input pins */
- writePinHigh(B0);
- writePinHigh(B1);
- writePinHigh(B2);
- writePinHigh(B3);
- writePinHigh(B4);
- writePinHigh(B5);
- writePinHigh(B6);
- writePinHigh(C2);
+ gpio_write_pin_high(B0);
+ gpio_write_pin_high(B1);
+ gpio_write_pin_high(B2);
+ gpio_write_pin_high(B3);
+ gpio_write_pin_high(B4);
+ gpio_write_pin_high(B5);
+ gpio_write_pin_high(B6);
+ gpio_write_pin_high(C2);
}
bool matrix_scan_custom(matrix_row_t current_matrix[]) {