diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-08-12 10:46:56 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-08-12 11:15:34 -0500 |
| commit | f9d1d9d114dd28c3abb62795b31a0a0ea36bc548 (patch) | |
| tree | 14b802579eb708d5ca889a8c048fbfb47ec239e0 | |
| parent | fbcbc93b6e23d5c583727d0d9ff72904a838aa58 (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 |
