diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-08-12 10:46:56 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-08-12 10:46:56 -0500 |
| commit | 454e616d13e6db762271b9e1ea8191407228e0ae (patch) | |
| tree | 4a05b49c8066970b42548659afa9feff6bd044dc | |
| parent | cff448205f165dfd5ec40cc5b336decff045d4cd (diff) | |
atmel-samd: disable FRAMEBUFFERIO on samd21
.. this disables SHARPMEMORY as well.
| -rw-r--r-- | ports/atmel-samd/mpconfigport.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ports/atmel-samd/mpconfigport.mk b/ports/atmel-samd/mpconfigport.mk index e4cf9ca83..5788a160b 100644 --- a/ports/atmel-samd/mpconfigport.mk +++ b/ports/atmel-samd/mpconfigport.mk @@ -39,6 +39,9 @@ endif CIRCUITPY_SDCARDIO ?= 0 +# Not enough RAM for framebuffers +CIRCUITPY_FRAMEBUFFERIO ?= 0 + # SAMD21 needs separate endpoint pairs for MSC BULK IN and BULK OUT, otherwise it's erratic. USB_MSC_EP_NUM_OUT = 1 |
