Skip to content

Commit 21f3439

Browse files
Typo SPISlave.cpp
1 parent 8704d9e commit 21f3439

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/SPISlave/src/SPISlave.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ void SPISlaveClass::_handleIRQ() {
166166
if (cnt && _recvCB) {
167167
_recvCB(buff, cnt);
168168
}
169-
// Attempt to send as many ytes to the TX FIFO as we have/are free
169+
// Attempt to send as many bytes to the TX FIFO as we have/are free
170170
while (spi_is_writable(_spi)) {
171171
for (; _dataLeft && spi_is_writable(_spi); _dataLeft--) {
172172
spi_get_hw(_spi)->dr = *(_dataOut++);

0 commit comments

Comments
 (0)