diff options
author | Joel Challis <git@zvecr.com> | 2021-09-08 02:23:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 18:23:11 -0700 |
commit | 60c5bd7b5e0e75f48d9731118b92a3add3342efd (patch) | |
tree | 50bf88fc2217fa46f43afb391e92a21cc1ef0330 /keyboards/handwired/dactyl/dactyl.h | |
parent | 04c0704b280c4847c43b164335e9741b19219131 (diff) |
handwired/dactyl - Refactor use of legacy i2c implementation (#14344)
Diffstat (limited to 'keyboards/handwired/dactyl/dactyl.h')
-rw-r--r-- | keyboards/handwired/dactyl/dactyl.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/keyboards/handwired/dactyl/dactyl.h b/keyboards/handwired/dactyl/dactyl.h index 3589e1d3c8..f7be886ac6 100644 --- a/keyboards/handwired/dactyl/dactyl.h +++ b/keyboards/handwired/dactyl/dactyl.h @@ -4,12 +4,11 @@ #include "quantum.h" #include <stdint.h> #include <stdbool.h> -#include "i2cmaster.h" +#include "i2c_master.h" #include <util/delay.h> #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 |