From 876d2dbe766eaa1752a9f9627335d97ad4a1a73b Mon Sep 17 00:00:00 2001 From: kraus Date: Sun, 27 Jan 2019 09:47:51 +0100 Subject: [PATCH] 2.25.7 --- README.md | 2 +- library.properties | 2 +- src/clib/u8x8_d_ssd1318.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 50a56da6..c95c8e80 100644 --- a/README.md +++ b/README.md @@ -8,5 +8,5 @@ Description: https://github.com/olikraus/u8g2/wiki Issue Tracker: https://github.com/olikraus/u8g2/issues -Download (2.25.6): https://github.com/olikraus/U8g2_Arduino/archive/master.zip +Download (2.25.7): https://github.com/olikraus/U8g2_Arduino/archive/master.zip diff --git a/library.properties b/library.properties index 8e0d4001..5f8946cd 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=U8g2 -version=2.25.6 +version=2.25.7 author=oliver maintainer=oliver sentence=Monochrome LCD, OLED and eInk Library. Display controller: SSD1305, SSD1306, SSD1309, SSD1322, SSD1325, SSD1327, SSD1329, SSD1606, SSD1607, SH1106, SH1107, SH1108, SH1122, T6963, RA8835, LC7981, PCD8544, PCF8812, HX1230, UC1601, UC1604, UC1608, UC1610, UC1611, UC1701, ST7565, ST7567, ST7588, ST75256, NT7534, IST3020, ST7920, LD7032, KS0108, SED1520, SBN1661, IL3820, MAX7219. Interfaces: I2C, SPI, Parallel. diff --git a/src/clib/u8x8_d_ssd1318.c b/src/clib/u8x8_d_ssd1318.c index decc7342..e0004d07 100644 --- a/src/clib/u8x8_d_ssd1318.c +++ b/src/clib/u8x8_d_ssd1318.c @@ -155,7 +155,7 @@ static const uint8_t u8x8_d_ssd1318_128x96_powersave1_seq[] = { static const uint8_t u8x8_d_ssd1318_128x96_flip0_seq[] = { U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */ U8X8_C(0x0a1), /* segment remap a0/a1*/ - U8X8_C(0x0c8), /* c0: scan dir normal, c8: reverse */ + U8X8_C(0x0c0), /* c0: scan dir normal, c8: reverse */ U8X8_END_TRANSFER(), /* disable chip */ U8X8_END() /* end of sequence */ }; @@ -163,7 +163,7 @@ static const uint8_t u8x8_d_ssd1318_128x96_flip0_seq[] = { static const uint8_t u8x8_d_ssd1318_128x96_flip1_seq[] = { U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */ U8X8_C(0x0a0), /* segment remap a0/a1*/ - U8X8_C(0x0c0), /* c0: scan dir normal, c8: reverse */ + U8X8_C(0x0c8), /* c0: scan dir normal, c8: reverse */ U8X8_END_TRANSFER(), /* disable chip */ U8X8_END() /* end of sequence */ };