diff options
| -rw-r--r-- | keyboards/switchplate/southpaw_65/matrix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/switchplate/southpaw_65/matrix.c b/keyboards/switchplate/southpaw_65/matrix.c index 5895750f89..e24dcef853 100644 --- a/keyboards/switchplate/southpaw_65/matrix.c +++ b/keyboards/switchplate/southpaw_65/matrix.c | |||
| @@ -54,9 +54,9 @@ static uint32_t read_cols(void) { | |||
| 54 | uint8_t state_1 = 0; | 54 | uint8_t state_1 = 0; |
| 55 | uint8_t state_2 = 0; | 55 | uint8_t state_2 = 0; |
| 56 | uint8_t state_3 = 0; | 56 | uint8_t state_3 = 0; |
| 57 | pca9555_readPins(IC2, PCA9555_PORT0, &state_1); | 57 | pca9555_readPins(IC1, PCA9555_PORT1, &state_1); |
| 58 | pca9555_readPins(IC2, PCA9555_PORT1, &state_2); | 58 | pca9555_readPins(IC2, PCA9555_PORT0, &state_2); |
| 59 | pca9555_readPins(IC1, PCA9555_PORT1, &state_3); | 59 | pca9555_readPins(IC2, PCA9555_PORT1, &state_3); |
| 60 | 60 | ||
| 61 | uint32_t state = ((((uint32_t)state_3 & 0b01111111) << 12) | ((uint32_t)state_2 << 4) | (((uint32_t)state_1 & 0b11110000) >> 4)); | 61 | uint32_t state = ((((uint32_t)state_3 & 0b01111111) << 12) | ((uint32_t)state_2 << 4) | (((uint32_t)state_1 & 0b11110000) >> 4)); |
| 62 | return ~state; | 62 | return ~state; |
