diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-08-07 10:18:25 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-08-07 10:18:25 +0200 |
commit | f6a842b1b064c83d42dfd626e888f79e4c1633e8 (patch) | |
tree | 5fb6088e10bd7fec2855a4c2a4914812e33a1be3 /src/arch/msp430fr5969lp/driver | |
parent | 353aa77910b3a9eeb8282539b17c76c7c7ec0dc7 (diff) |
Support optional SoftI2C pullups on MSP430
Diffstat (limited to 'src/arch/msp430fr5969lp/driver')
-rw-r--r-- | src/arch/msp430fr5969lp/driver/i2c.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/msp430fr5969lp/driver/i2c.cc b/src/arch/msp430fr5969lp/driver/i2c.cc index fffc28c..55f8591 100644 --- a/src/arch/msp430fr5969lp/driver/i2c.cc +++ b/src/arch/msp430fr5969lp/driver/i2c.cc @@ -16,7 +16,7 @@ signed char I2C::setup() UCB0CTL1 &= ~UCSWRST; UCB0I2CSA = 0; - __delay_cycles(1600); + arch.delay_us(100); if (UCB0STAT & UCBBUSY) return -1; |