diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-08-08 15:45:32 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-08-08 15:45:32 +0200 |
commit | f4b31b88508892ca781ebb14716dc322e868b6db (patch) | |
tree | 11ffb6fa4d8ce8c8821ea10fa62b17cd0d7f0024 /src/driver/soft_i2c.cc | |
parent | e7f1024732ee9bac13fbf2e2439106f9f3577db7 (diff) |
Add 24LC64 EEPROM driver
Diffstat (limited to 'src/driver/soft_i2c.cc')
-rw-r--r-- | src/driver/soft_i2c.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/driver/soft_i2c.cc b/src/driver/soft_i2c.cc index cebd8be..33f77ab 100644 --- a/src/driver/soft_i2c.cc +++ b/src/driver/soft_i2c.cc @@ -140,6 +140,8 @@ signed char SoftI2C::xmit(unsigned char address, SoftI2C i2c(GPIO::d7, GPIO::d8); #elif MULTIPASS_ARCH_arduino_nano SoftI2C i2c(GPIO::pc4, GPIO::pc5); +#elif MULTIPASS_ARCH_blinkenrocket +SoftI2C i2c(GPIO::pc4, GPIO::pc5); #elif MULTIPASS_ARCH_msp430fr5969lp SoftI2C i2c(GPIO::p1_6, GPIO::p1_7); #endif |