Bump version #, enable DMA by default on PyPortal

This commit is contained in:
Phillip Burgess 2019-03-17 18:57:03 -07:00
parent 1bd0463d15
commit fe6266e2a8
2 changed files with 7 additions and 3 deletions

View File

@ -66,8 +66,12 @@ typedef volatile PORT_t* PORTreg_t; ///< PORT register type
#define DEFAULT_SPI_FREQ 16000000L ///< Hardware SPI default speed
#endif
//#define USE_SPI_DMA ///< If set, use SPI DMA if available
// Another "oops" name -- in the future parallel DMA will also be handled.
#if defined(ADAFRUIT_PYPORTAL)
#define USE_SPI_DMA ///< Auto DMA if using PyPortal
#else
//#define USE_SPI_DMA ///< If set, use DMA if available
#endif
// Another "oops" name -- this now also handles parallel DMA.
// If DMA is enabled, Arduino sketch MUST #include <Adafruit_ZeroDMA.h>
// Estimated RAM usage:
// 4 bytes/pixel on display major axis + 8 bytes/pixel on minor axis,

View File

@ -1,5 +1,5 @@
name=Adafruit GFX Library
version=1.4.4
version=1.4.5
author=Adafruit
maintainer=Adafruit <info@adafruit.com>
sentence=Adafruit GFX graphics core library, this is the 'core' class that all our other graphics libraries derive from.