mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-17 13:23:26 +00:00
change method name
This commit is contained in:
@@ -35,12 +35,12 @@ type Device8Txer struct {
|
|||||||
inTx bool // Tracks whether a transaction is currently active
|
inTx bool // Tracks whether a transaction is currently active
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetBuffers configures the write and read buffers for this device.
|
// SetTxBuffers configures the write and read buffers for this device.
|
||||||
// These buffers are reused across transactions to avoid heap allocations.
|
// These buffers are reused across transactions to avoid heap allocations.
|
||||||
//
|
//
|
||||||
// The writebuf should be large enough to hold the register address plus
|
// The writebuf should be large enough to hold the register address plus
|
||||||
// all data bytes to be written in a single transaction.
|
// all data bytes to be written in a single transaction.
|
||||||
func (d *Device8Txer) SetBuffers(writebuf, readbuf []byte) {
|
func (d *Device8Txer) SetTxBuffers(writebuf, readbuf []byte) {
|
||||||
d.readBuf = readbuf
|
d.readBuf = readbuf
|
||||||
d.writeBuf = writebuf
|
d.writeBuf = writebuf
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user