summaryrefslogtreecommitdiff
path: root/keyboards/sx60/sx60.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-09-07 16:34:59 +0100
committerGitHub <noreply@github.com>2021-09-07 16:34:59 +0100
commite7a5c006d9777a4009da934f408961aa2d2e6fb1 (patch)
tree98c6ca624c08dde5f5d288d405b8eb3a5356d6a6 /keyboards/sx60/sx60.h
parent2d6635214ab05858271f312619c5447bf317cf51 (diff)
Refactor use of legacy i2c implementation (#14341)
Diffstat (limited to 'keyboards/sx60/sx60.h')
-rwxr-xr-xkeyboards/sx60/sx60.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/keyboards/sx60/sx60.h b/keyboards/sx60/sx60.h
index 8ead53ee05..507bddf7b0 100755
--- a/keyboards/sx60/sx60.h
+++ b/keyboards/sx60/sx60.h
@@ -4,13 +4,12 @@
#include "quantum.h"
#include <stdint.h>
#include <stdbool.h>
-#include "i2cmaster.h"
+#include "i2c_master.h"
#include <util/delay.h>
/* I2C aliases and register addresses (see "mcp23018.md") */
#define I2C_ADDR 0b0100000
-#define I2C_ADDR_WRITE ( (I2C_ADDR<<1) | I2C_WRITE )
-#define I2C_ADDR_READ ( (I2C_ADDR<<1) | I2C_READ )
+#define I2C_TIMEOUT 100
#define IODIRA 0x00 /* i/o direction register */
#define IODIRB 0x01
#define GPPUA 0x0C /* GPIO pull-up resistor register */