Skip to content

Commit

Permalink
Raise version to 2.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodmer committed May 9, 2020
1 parent cc3a108 commit 7e4566f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions TFT_eSPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#ifndef _TFT_eSPIH_
#define _TFT_eSPIH_

#define TFT_ESPI_VERSION "2.2.5"
#define TFT_ESPI_VERSION "2.2.6"

/***************************************************************************************
** Section 1: Load required header files
Expand Down Expand Up @@ -615,9 +615,8 @@ class TFT_eSPI : public Print {
void pushPixelsDMA(uint16_t* image, uint32_t len);

// Check if the DMA is complete - use while(tft.dmaBusy); for a blocking wait
// Note: for ESP32 the dmaBusy() function is blocking at the moment - to be updated
bool dmaBusy(void);
void dmaWait(void);
bool dmaBusy(void); // returns true if DMA is still in progress
void dmaWait(void); // wait until DMA is complete

bool DMA_Enabled = false; // Flag for DMA enabled state
uint8_t spiBusyCheck = 0; // Number of ESP32 transfer buffers to check
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TFT_eSPI",
"version": "2.2.5",
"version": "2.2.6",
"keywords": "Arduino, tft, ePaper, display, STM32, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486, ST7789, RM68140",
"description": "A TFT and ePaper SPI graphics library with optimisation for ESP8266, ESP32 and STM32",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=TFT_eSPI
version=2.2.5
version=2.2.6
author=Bodmer
maintainer=Bodmer
sentence=TFT graphics library for Arduino processors with performance optimisation for STM32, ESP8266 and ESP32
Expand Down

0 comments on commit 7e4566f

Please sign in to comment.