Skip to content

Commit 889a98e

Browse files
Update SPI.h
1 parent efdcdd5 commit 889a98e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/SPI.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class SPI : private NonCopyable<SPI> {
120120
*
121121
* @param value Data to be sent to the SPI slave.
122122
*
123-
* @return Response from the SPI slave
123+
* @return Response from the SPI slave.
124124
*/
125125
virtual int write(int value);
126126

@@ -186,7 +186,7 @@ class SPI : private NonCopyable<SPI> {
186186
return 0;
187187
}
188188

189-
/** Abort the on-going SPI transfer, and continue with transfers in the queue if any.
189+
/** Abort the on-going SPI transfer, and continue with transfers in the queue, if any.
190190
*/
191191
void abort_transfer();
192192

@@ -249,7 +249,7 @@ class SPI : private NonCopyable<SPI> {
249249
*/
250250
int queue_transfer(const void *tx_buffer, int tx_length, void *rx_buffer, int rx_length, unsigned char bit_width, const event_callback_t &callback, int event);
251251

252-
/** Configure a callback, SPI peripheral and initiate a new transfer.
252+
/** Configure a callback, SPI peripheral, and initiate a new transfer.
253253
*
254254
* @param tx_buffer The TX buffer with data to be transfered. If NULL is passed,
255255
* the default SPI value is sent.

0 commit comments

Comments
 (0)