Skip to content

Commit 7b639bd

Browse files
fix(driver-i2c): astyle fixes
1 parent 3b3a265 commit 7b639bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/I2C.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ int I2C::transfer(int address, const char *tx_buffer, int tx_length, char *rx_bu
206206
_callback = callback;
207207
bool stop = (repeated) ? false : true;
208208
_async_transfer_ongoing = true;
209-
i2c_transfer_async(&_i2c, (void *)tx_buffer, tx_length, (void *)rx_buffer, rx_length, address, stop, &I2C::irq_handler_asynch, (void*)this);
209+
i2c_transfer_async(&_i2c, (void *)tx_buffer, tx_length, (void *)rx_buffer, rx_length, address, stop, &I2C::irq_handler_asynch, (void *)this);
210210
unlock();
211211
return 0;
212212
}

0 commit comments

Comments
 (0)