diff options
author | IBNobody <ibnobody@gmail.com> | 2016-09-20 21:38:59 -0500 |
---|---|---|
committer | IBNobody <ibnobody@gmail.com> | 2016-09-20 21:38:59 -0500 |
commit | 6631abc1cb0e570271bcf33464e3af17b6fc0b87 (patch) | |
tree | 29e33041e54b98af1425740f1e6625091ffe50e8 /keyboards/lets_split/i2c.c | |
parent | f956802f29aaa3da0d86d56f42986d456bae717b (diff) |
Made Serial and I2C not include the Other
This saves 192 bytes
Diffstat (limited to 'keyboards/lets_split/i2c.c')
-rw-r--r-- | keyboards/lets_split/i2c.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/keyboards/lets_split/i2c.c b/keyboards/lets_split/i2c.c index c72789403e..084c890c40 100644 --- a/keyboards/lets_split/i2c.c +++ b/keyboards/lets_split/i2c.c @@ -6,6 +6,8 @@ #include <stdbool.h> #include "i2c.h" +#ifdef USE_I2C + // Limits the amount of we wait for any one i2c transaction. // Since were running SCL line 100kHz (=> 10μs/bit), and each transactions is // 9 bits, a single transaction will take around 90μs to complete. @@ -157,3 +159,4 @@ ISR(TWI_vect) { // Reset everything, so we are ready for the next TWI interrupt TWCR |= (1<<TWIE) | (1<<TWINT) | (ack<<TWEA) | (1<<TWEN); } +#endif |