diff options
author | QMK Bot <hello@qmk.fm> | 2023-03-05 13:29:51 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2023-03-05 13:29:51 +0000 |
commit | b34d51d08d7083fc790db2562a4d39890f34886f (patch) | |
tree | 2ebe376038319190524b0242083f1dbdb53a54a8 /keyboards | |
parent | 8075eb5ea4daf25cb9b416d59fbbb9448e49368c (diff) | |
parent | 07b7fed122a612f2304211f37cf19ea7b392905a (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards')
-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) { uint8_t state_1 = 0; uint8_t state_2 = 0; uint8_t state_3 = 0; - pca9555_readPins(IC2, PCA9555_PORT0, &state_1); - pca9555_readPins(IC2, PCA9555_PORT1, &state_2); - pca9555_readPins(IC1, PCA9555_PORT1, &state_3); + pca9555_readPins(IC1, PCA9555_PORT1, &state_1); + pca9555_readPins(IC2, PCA9555_PORT0, &state_2); + pca9555_readPins(IC2, PCA9555_PORT1, &state_3); uint32_t state = ((((uint32_t)state_3 & 0b01111111) << 12) | ((uint32_t)state_2 << 4) | (((uint32_t)state_1 & 0b11110000) >> 4)); return ~state; |