We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8704d9e commit 21f3439Copy full SHA for 21f3439
libraries/SPISlave/src/SPISlave.cpp
@@ -166,7 +166,7 @@ void SPISlaveClass::_handleIRQ() {
166
if (cnt && _recvCB) {
167
_recvCB(buff, cnt);
168
}
169
- // Attempt to send as many ytes to the TX FIFO as we have/are free
+ // Attempt to send as many bytes to the TX FIFO as we have/are free
170
while (spi_is_writable(_spi)) {
171
for (; _dataLeft && spi_is_writable(_spi); _dataLeft--) {
172
spi_get_hw(_spi)->dr = *(_dataOut++);
0 commit comments