summaryrefslogtreecommitdiff
path: root/include/driver/soft_i2c.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/driver/soft_i2c.h')
-rw-r--r--include/driver/soft_i2c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/driver/soft_i2c.h b/include/driver/soft_i2c.h
index f3ba14f..7960df2 100644
--- a/include/driver/soft_i2c.h
+++ b/include/driver/soft_i2c.h
@@ -6,7 +6,7 @@ class SoftI2C {
SoftI2C(const SoftI2C &copy);
unsigned char sda, scl;
-#if SOFTI2C_PULLUP_EXTERNAL || SOFTI2C_PULLUP_FIXED_GPIO
+#if SOFTI2C_PULLUP_EXTERNAL
unsigned char sda_pull, scl_pull;
#endif
@@ -16,7 +16,7 @@ class SoftI2C {
unsigned char rx(bool send_ack);
public:
-#if SOFTI2C_PULLUP_EXTERNAL || SOFTI2C_PULLUP_FIXED_GPIO
+#if SOFTI2C_PULLUP_EXTERNAL
SoftI2C(unsigned char sda, unsigned char scl,
unsigned char sda_pull, unsigned char scl_pull) :
sda(sda), scl(scl), sda_pull(sda_pull), scl_pull(scl_pull) {}