diff options
Diffstat (limited to 'drivers/sdcard/sdcard.py')
-rw-r--r-- | drivers/sdcard/sdcard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sdcard/sdcard.py b/drivers/sdcard/sdcard.py index 191630aebd..cbf4474158 100644 --- a/drivers/sdcard/sdcard.py +++ b/drivers/sdcard/sdcard.py @@ -142,7 +142,7 @@ class SDCard: buf[5] = crc self.spi.write(buf) - # wait for the repsonse (response[7] == 0) + # wait for the response (response[7] == 0) for i in range(_CMD_TIMEOUT): response = self.spi.read(1, 0xff)[0] if not (response & 0x80): |