Skip to content

Commit 5c31905

Browse files
committed
raising version 0.0.13
1 parent f600beb commit 5c31905

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/m5stack/M5GFX.git"
1212
},
13-
"version": "0.0.12",
13+
"version": "0.0.13",
1414
"framework": "arduino",
1515
"platforms": "espressif32",
1616
"headers": "M5GFX.h"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=M5GFX
2-
version=0.0.12
2+
version=0.0.13
33
author=M5Stack
44
maintainer=M5Stack
55
sentence=Library for M5Stack All Display

src/lgfx/v1/gitTagVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#define LGFX_VERSION_MAJOR 1
22
#define LGFX_VERSION_MINOR 0
3-
#define LGFX_VERSION_PATCH 8
3+
#define LGFX_VERSION_PATCH 9
44
#define LOVYANGFX_VERSION F( LGFX_VERSION_MAJOR "." LGFX_VERSION_MINOR "." LGFX_VERSION_PATCH )

src/lgfx/v1/platforms/samd21/common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ namespace lgfx
477477
auto sercomData = samd21::getSercomData(sercom_index);
478478
auto sercom = reinterpret_cast<Sercom*>(sercomData->sercomPtr);
479479
auto *spi = &sercom->SPI;
480-
while (spi->INTFLAG.bit.RXC) { uint32_t tmp = spi->DATA.reg; }
480+
while (spi->INTFLAG.bit.RXC) { uint32_t tmp = spi->DATA.reg; (void)tmp; }
481481
do
482482
{
483483
spi->DATA.reg = *data;

0 commit comments

Comments
 (0)