diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-05-06 11:04:53 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-06-26 11:50:23 -0500 |
| commit | 57fde2e07bb2ee4dcff342deed08e4e7799da799 (patch) | |
| tree | e0c9f2ecccc45637a48db61e823485ad3460e9cf /ports/atmel-samd | |
| parent | 12df4ce221b212c866f83c0ccf0233458fb421bd (diff) | |
sdcardio: implement new library for SD card I/O
Testing performed: That a card is successfully mounted on Pygamer with
the built in SD card slot
This module is enabled for most FULL_BUILD boards, but is disabled for
samd21 ("M0"), litex, and pca10100 for various reasons.
Diffstat (limited to 'ports/atmel-samd')
| -rw-r--r-- | ports/atmel-samd/mpconfigport.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/atmel-samd/mpconfigport.mk b/ports/atmel-samd/mpconfigport.mk index 92d47b186..face79fad 100644 --- a/ports/atmel-samd/mpconfigport.mk +++ b/ports/atmel-samd/mpconfigport.mk @@ -37,6 +37,8 @@ ifndef CIRCUITPY_TOUCHIO_USE_NATIVE CIRCUITPY_TOUCHIO_USE_NATIVE = 1 endif +CIRCUITPY_SDCARDIO ?= 0 + # SAMD21 needs separate endpoint pairs for MSC BULK IN and BULK OUT, otherwise it's erratic. USB_MSC_EP_NUM_OUT = 1 |
