misspell.csv: add new misspellings; also check in result of 'make spellfix'.

This commit is contained in:
Dan Kegel
2024-08-14 13:52:51 -07:00
committed by Ron Evans
parent 194396d715
commit 5368dd22c5
12 changed files with 27 additions and 15 deletions
+2 -2
View File
@@ -49,7 +49,7 @@ const (
var (
errUnsupportedSPIController = errors.New("SPI controller not supported. Use SPI0 or SPI1.")
errI2CTxAbort = errors.New("I2C transmition has been aborted.")
errI2CTxAbort = errors.New("I2C transmission has been aborted.")
)
func (p Pin) setFPIOAIOPull(pull fpioaPullMode) {
@@ -619,7 +619,7 @@ func (i2c *I2C) Tx(addr uint16, w, r []byte) error {
dataLen -= fifoLen
}
// Wait for transmition to complete.
// Wait for transmission to complete.
for i2c.Bus.STATUS.HasBits(kendryte.I2C_STATUS_ACTIVITY) || !i2c.Bus.STATUS.HasBits(kendryte.I2C_STATUS_TFE) {
}