Skip to content

Commit e749fc3

Browse files
committed
2.24.3
1 parent 7a9c4fc commit e749fc3

20 files changed

+687
-229
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ Description: https://github.com/olikraus/u8g2/wiki
88

99
Issue Tracker: https://github.com/olikraus/u8g2/issues
1010

11-
Download (2.24.2): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
11+
Download (2.24.3): https://github.com/olikraus/U8g2_Arduino/archive/master.zip
1212

examples/page_buffer/ClipWindow/ClipWindow.ino

+282
Large diffs are not rendered by default.

examples/page_buffer/FPS/FPS.ino

+11
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,17 @@
238238
U8G2_SSD1306_128X64_NONAME_1_3W_SW_SPI Uno Clip=2.7 Box=2.9 @=1.8 Pix=2.2 issue 586, before optimization
239239
U8G2_SSD1306_128X64_NONAME_1_3W_SW_SPI Uno Clip=23.4 Box=40.8 @=4.4 Pix=8.1 issue 586, after optimization
240240
241+
242+
28 Oct 2018, Arduino 1.8.4, 8 Bit Mode
243+
U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI Uno Clip=34.0 Box=88.4 @=4.5 Pix=8.2 issue 364, clip window
244+
245+
U8G2_SSD1306_128X32_UNIVISION_1_HW_I2C Uno Clip=28.4 Box=39.2 @=10.0 Pix=14.9 I2C default
246+
U8G2_SSD1306_128X32_UNIVISION_1_HW_I2C Uno Clip=32.9 Box=48.3 @=10.5 Pix=16.1 I2C default, u8g2.setBusClock(600000UL)
247+
248+
U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI Uno Clip=33.9 Box=88.2 @=4.5 Pix=8.2 SPI default speed
249+
U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI Uno Clip=32.8 Box=80.6 @=4.5 Pix=8.2 SPI default speed u8g2.setBusClock(6000000UL);
250+
U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI Uno Clip=33.9 Box=88.2 @=4.5 Pix=8.2 SPI default speed u8g2.setBusClock(9000000UL);
251+
241252
*/
242253

243254

examples/page_buffer/HelloWorld/HelloWorld.ino

+20-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,25 @@
3030
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3131
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
3232
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33-
33+
34+
27 Oct 2018:
35+
36+
U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI u8g2
37+
make -f Makefile.184.uno
38+
39+
text
40+
8732 default, all active
41+
8500 -232 -2.65% no U8G2_WITH_CLIP_WINDOW_SUPPORT
42+
8316 -416 -4.76% no U8G2_WITH_FONT_ROTATION
43+
8606 -126 -1.44% no U8G2_WITH_UNICODE
44+
8692 -40 -0.45% no U8G2_WITH_INTERSECTION
45+
8328 -404 -4.62% no U8G2_WITH_INTERSECTION no U8G2_WITH_CLIP_WINDOW_SUPPORT
46+
8718 -14 -4.86% no U8G2_WITH_HVLINE_SPEED_OPTIMIZATION
47+
8026 -706 -8.08% no U8G2_WITH_FONT_ROTATION no U8G2_WITH_INTERSECTION no U8G2_WITH_CLIP_WINDOW_SUPPORT
48+
49+
Some flags depend on each other: `U8G2_WITH_INTERSECTION` is required for `U8G2_WITH_CLIP_WINDOW_SUPPORT`, so `U8G2_WITH_INTERSECTION` is partly active as long
50+
as `U8G2_WITH_CLIP_WINDOW_SUPPORT` is requested.
51+
3452
*/
3553

3654
#include <Arduino.h>
@@ -60,7 +78,7 @@
6078
//U8G2_NULL u8g2(U8G2_R0); // null device, a 8x8 pixel display which does nothing
6179
//U8G2_SSD1306_128X64_NONAME_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
6280
//U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 12, /* dc=*/ 4, /* reset=*/ 6); // Arduboy (Production, Kickstarter Edition)
63-
//U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
81+
U8G2_SSD1306_128X64_NONAME_1_4W_HW_SPI u8g2(U8G2_R0, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
6482
//U8G2_SSD1306_128X64_NONAME_1_3W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* reset=*/ 8);
6583
//U8G2_SSD1306_128X64_NONAME_1_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
6684
//U8G2_SSD1306_128X64_ALT0_1_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE); // same as the NONAME variant, but may solve the "every 2nd line skipped" problem

examples/page_buffer/Shennong/Shennong.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
// To read the short story with all glyphs you need at least a font with _gb2312b postfix
274274
// However, a font with _gb2312b postfix is very large and will not always fit on
275275
// the target controller. For testing you can use _chinese1 extenstion, but then
276-
// many gylphs are skipped.
276+
// many gylphs are skipped and not visible.
277277
//
278278
// wqy fonts are available in different sizes, here are only wqy12, wqy14 and wqy16 listed
279279

@@ -392,7 +392,7 @@ void setup(void) {
392392

393393
/* select a font */
394394

395-
u8g2.setFont(u8g2_font_wqy12_t_chinese1); // two unknown glyphs
395+
// u8g2.setFont(u8g2_font_wqy12_t_chinese1); // two unknown glyphs
396396
//u8g2.setFont(u8g2_font_wqy12_t_chinese3); // two unknown glyphs
397397

398398
//u8g2.setFont(u8g2_font_wqy12_t_gb2312a); // ";" is missing

extras/ChangeLog

+6-1
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,11 @@ https://github.com/olikraus/u8g2 ChangeLog
200200
* Added contributed 7-segment font, https://github.com/olikraus/u8g2/wiki/fntgrpu8g#7segments_26x42 (issue 634)
201201
* Added several fonts from fontstruct.com, https://github.com/olikraus/u8g2/wiki/fntgrpfontstruct (issue 687)#
202202
This also includes several outline fonts.
203-
203+
2018-10-28 v2.24.3 [email protected]
204+
* Added clip window support (issue 364)
205+
* Added setBusClock() proc to change the I2C/SPI bus clock speed (Arduino only, issue 705)
206+
* Added sleep mode for ST7920 (issue 245)
207+
* Added support for SSD0323 (issue 720)
208+
204209

205210

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=U8g2
2-
version=2.24.2
2+
version=2.24.3
33
author=oliver <[email protected]>
44
maintainer=oliver <[email protected]>
55
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.

src/U8g2lib.h

+9
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ class U8G2 : public Print
6363
u8x8_t *getU8x8(void) { return u8g2_GetU8x8(&u8g2); }
6464
u8g2_t *getU8g2(void) { return &u8g2; }
6565

66+
uint32_t getBusClock(void) { return u8g2_GetU8x8(&u8g2)->bus_clock; }
67+
void setBusClock(uint32_t clock_speed) { u8g2_GetU8x8(&u8g2)->bus_clock = clock_speed; }
68+
6669
void setI2CAddress(uint8_t adr) { u8g2_SetI2CAddress(&u8g2, adr); }
6770

6871

@@ -144,6 +147,12 @@ class U8G2 : public Print
144147

145148
/* u8g2 */
146149

150+
#ifdef U8G2_WITH_CLIP_WINDOW_SUPPORT
151+
void setMaxClipWindow(void) { u8g2_SetMaxClipWindow(&u8g2); }
152+
void setClipWindow(u8g2_uint_t clip_x0, u8g2_uint_t clip_y0, u8g2_uint_t clip_x1, u8g2_uint_t clip_y1) {
153+
u8g2_SetClipWindow(&u8g2, clip_x0, clip_y0, clip_x1, clip_y1 ); }
154+
#endif /* U8G2_WITH_CLIP_WINDOW_SUPPORT */
155+
147156

148157
u8g2_uint_t getDisplayHeight(void) { return u8g2_GetDisplayHeight(&u8g2); }
149158
u8g2_uint_t getDisplayWidth(void) { return u8g2_GetDisplayWidth(&u8g2); }

src/U8x8lib.cpp

+8-10
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,7 @@ extern "C" uint8_t u8x8_byte_arduino_hw_spi(u8x8_t *u8x8, uint8_t msg, uint8_t a
556556

557557
break;
558558
case U8X8_MSG_BYTE_INIT:
559+
u8x8->bus_clock = u8x8->display_info->sck_clock_hz;
559560
/* disable chipselect */
560561
u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_disable_level);
561562

@@ -608,7 +609,7 @@ extern "C" uint8_t u8x8_byte_arduino_hw_spi(u8x8_t *u8x8, uint8_t msg, uint8_t a
608609
}
609610

610611
#if ARDUINO >= 10600
611-
SPI.beginTransaction(SPISettings(u8x8->display_info->sck_clock_hz, MSBFIRST, internal_spi_mode));
612+
SPI.beginTransaction(SPISettings(u8x8->bus_clock, MSBFIRST, internal_spi_mode));
612613
#else
613614
SPI.begin();
614615

@@ -674,6 +675,7 @@ extern "C" uint8_t u8x8_byte_arduino_2nd_hw_spi(U8X8_UNUSED u8x8_t *u8x8, U8X8_U
674675

675676
break;
676677
case U8X8_MSG_BYTE_INIT:
678+
u8x8->bus_clock = u8x8->display_info->sck_clock_hz;
677679
/* disable chipselect */
678680
u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_disable_level);
679681
/* no wait required here */
@@ -704,7 +706,7 @@ extern "C" uint8_t u8x8_byte_arduino_2nd_hw_spi(U8X8_UNUSED u8x8_t *u8x8, U8X8_U
704706
}
705707

706708
#if ARDUINO >= 10600
707-
SPI1.beginTransaction(SPISettings(u8x8->display_info->sck_clock_hz, MSBFIRST, internal_spi_mode));
709+
SPI1.beginTransaction(SPISettings(u8x8->bus_clock, MSBFIRST, internal_spi_mode));
708710
#else
709711
SPI1.begin();
710712

@@ -975,6 +977,7 @@ extern "C" uint8_t u8x8_byte_arduino_hw_i2c(U8X8_UNUSED u8x8_t *u8x8, U8X8_UNUSE
975977
Wire.write((uint8_t *)arg_ptr, (int)arg_int);
976978
break;
977979
case U8X8_MSG_BYTE_INIT:
980+
u8x8->bus_clock = u8x8->display_info->i2c_bus_clock_100kHz * 100000UL;
978981
#if defined(ESP8266) || defined(ARDUINO_ARCH_ESP8266) || defined(ESP_PLATFORM) || defined(ARDUINO_ARCH_ESP32)
979982
/* for ESP8266/ESP32, Wire.begin has two more arguments: clock and data */
980983
if ( u8x8->pins[U8X8_PIN_I2C_CLOCK] != U8X8_PIN_NONE && u8x8->pins[U8X8_PIN_I2C_DATA] != U8X8_PIN_NONE )
@@ -996,10 +999,7 @@ extern "C" uint8_t u8x8_byte_arduino_hw_i2c(U8X8_UNUSED u8x8_t *u8x8, U8X8_UNUSE
996999
#if ARDUINO >= 10600
9971000
/* not sure when the setClock function was introduced, but it is there since 1.6.0 */
9981001
/* if there is any error with Wire.setClock() just remove this function call */
999-
if ( u8x8->display_info->i2c_bus_clock_100kHz >= 4 )
1000-
{
1001-
Wire.setClock(400000L);
1002-
}
1002+
Wire.setClock(u8x8->bus_clock);
10031003
#endif
10041004
Wire.beginTransmission(u8x8_GetI2CAddress(u8x8)>>1);
10051005
break;
@@ -1022,6 +1022,7 @@ extern "C" uint8_t u8x8_byte_arduino_2nd_hw_i2c(U8X8_UNUSED u8x8_t *u8x8, U8X8_U
10221022
Wire1.write((uint8_t *)arg_ptr, (int)arg_int);
10231023
break;
10241024
case U8X8_MSG_BYTE_INIT:
1025+
u8x8->bus_clock = u8x8->display_info->i2c_bus_clock_100kHz * 100000UL;
10251026
Wire1.begin();
10261027
break;
10271028
case U8X8_MSG_BYTE_SET_DC:
@@ -1030,10 +1031,7 @@ extern "C" uint8_t u8x8_byte_arduino_2nd_hw_i2c(U8X8_UNUSED u8x8_t *u8x8, U8X8_U
10301031
#if ARDUINO >= 10600
10311032
/* not sure when the setClock function was introduced, but it is there since 1.6.0 */
10321033
/* if there is any error with Wire.setClock() just remove this function call */
1033-
if ( u8x8->display_info->i2c_bus_clock_100kHz >= 4 )
1034-
{
1035-
Wire1.setClock(400000L);
1036-
}
1034+
Wire1.setClock(u8x8->bus_clock);
10371035
#endif
10381036
Wire1.beginTransmission(u8x8_GetI2CAddress(u8x8)>>1);
10391037
break;

src/U8x8lib.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,12 @@ class U8X8 : public Print
156156
public:
157157
uint8_t tx, ty;
158158

159-
U8X8(void) { home(); }
159+
U8X8(void) { home(); }
160160
u8x8_t *getU8x8(void) { return &u8x8; }
161161

162+
uint32_t getBusClock(void) { return u8x8.bus_clock; }
163+
void setBusClock(uint32_t clock_speed) { u8x8.bus_clock = clock_speed; }
164+
162165
void setI2CAddress(uint8_t adr) { u8x8_SetI2CAddress(&u8x8, adr); }
163166

164167
uint8_t getCols(void) { return u8x8_GetCols(&u8x8); }

src/clib/u8g2.h

+41-47
Original file line numberDiff line numberDiff line change
@@ -72,27 +72,14 @@
7272
//#define U8G2_16BIT
7373

7474

75-
/*
76-
The following macro enables a special check and optimization
77-
in the HVLine procedure for lines with one pixel length.
78-
It enabled, it will consume about 60 bytes in flash memory of the AVR and
79-
there will be a speed improvement of about 20% for any single pixel draw.
80-
*/
81-
#define U8G2_WITH_ONE_PIXEL_OPTIMIZATION
82-
75+
/* U8g2 feature selection, see also https://github.com/olikraus/u8g2/wiki/u8g2optimization */
8376

8477
/*
8578
The following macro enables the HVLine speed optimization.
8679
It will consume about 40 bytes more in flash memory of the AVR.
8780
HVLine procedures are also used by the text drawing functions.
8881
*/
89-
#define U8G2_HVLINE_SPEED_OPTIMIZATION
90-
91-
/*
92-
The following macro enables all four drawing directions for glyphs and strings.
93-
If this macro is not defined, than a string can be drawn only in horizontal direction.
94-
*/
95-
#define U8G2_WITH_FONT_ROTATION
82+
#define U8G2_WITH_HVLINE_SPEED_OPTIMIZATION
9683

9784
/*
9885
The following macro activates the early intersection check with the current visible area.
@@ -103,6 +90,22 @@
10390
*/
10491
#define U8G2_WITH_INTERSECTION
10592

93+
94+
/*
95+
Enable clip window support:
96+
void u8g2_SetMaxClipWindow(u8g2_t *u8g2)
97+
void u8g2_SetClipWindow(u8g2_t *u8g2, u8g2_uint_t clip_x0, u8g2_uint_t clip_y0, u8g2_uint_t clip_x1, u8g2_uint_t clip_y1 )
98+
Setting a clip window will restrict all drawing to this window.
99+
Clip window support requires about 200 bytes flash memory on AVR systems
100+
*/
101+
#define U8G2_WITH_CLIP_WINDOW_SUPPORT
102+
103+
/*
104+
The following macro enables all four drawing directions for glyphs and strings.
105+
If this macro is not defined, than a string can be drawn only in horizontal direction.
106+
*/
107+
#define U8G2_WITH_FONT_ROTATION
108+
106109
/*
107110
U8glib V2 contains support for unicode plane 0 (Basic Multilingual Plane, BMP).
108111
The following macro activates this support. Deactivation would save some ROM.
@@ -130,24 +133,6 @@
130133
#define U8G2_WITH_UNICODE
131134

132135

133-
/*
134-
Internal performance test for the effect of enabling U8G2_WITH_INTERSECTION
135-
Should not be defined for production code
136-
*/
137-
//#define U8G2_WITH_HVLINE_COUNT
138-
139-
/*
140-
Defining the following variable adds the clipping and check procedures agains the display boundaries.
141-
Clipping procedures are mandatory for the picture loop (u8g2_FirstPage/NextPage).
142-
Clipping procedures will also allow strings to exceed the display boundaries.
143-
On the other side, without clipping, all the setting of pixels must happen within the display boundaries.
144-
145-
WARNING: Adding a comment in front of the following macro or removing the following line
146-
may lead to memory faults if you write any pixel outside the display boundary.
147-
*/
148-
#define U8G2_WITH_CLIPPING
149-
150-
151136

152137

153138
/*==========================================*/
@@ -194,6 +179,7 @@ typedef struct u8g2_struct u8g2_t;
194179
typedef struct u8g2_cb_struct u8g2_cb_t;
195180

196181
typedef void (*u8g2_update_dimension_cb)(u8g2_t *u8g2);
182+
typedef void (*u8g2_update_page_win_cb)(u8g2_t *u8g2);
197183
typedef void (*u8g2_draw_l90_cb)(u8g2_t *u8g2, u8g2_uint_t x, u8g2_uint_t y, u8g2_uint_t len, uint8_t dir);
198184
typedef void (*u8g2_draw_ll_hvline_cb)(u8g2_t *u8g2, u8g2_uint_t x, u8g2_uint_t y, u8g2_uint_t len, uint8_t dir);
199185

@@ -276,7 +262,8 @@ typedef struct _u8g2_kerning_t u8g2_kerning_t;
276262

277263
struct u8g2_cb_struct
278264
{
279-
u8g2_update_dimension_cb update;
265+
u8g2_update_dimension_cb update_dimension;
266+
u8g2_update_page_win_cb update_page_win;
280267
u8g2_draw_l90_cb draw_l90;
281268
};
282269

@@ -300,24 +287,33 @@ struct u8g2_struct
300287
u8g2_uint_t pixel_curr_row; /* u8g2.tile_curr_row*8 */
301288

302289
/* the following variables are set by the update dimension callback */
303-
/* this is clipbox after rotation for the hvline procedures */
290+
/* this is the clipbox after rotation for the hvline procedures */
304291
//u8g2_uint_t buf_x0; /* left corner of the buffer */
305292
//u8g2_uint_t buf_x1; /* right corner of the buffer (excluded) */
306293
u8g2_uint_t buf_y0;
307294
u8g2_uint_t buf_y1;
308295

309-
/* display dimensions in pixel for the user, calculated in u8g2_update_dimension_common(), used in u8g2_draw_hv_line_2dir() */
296+
/* display dimensions in pixel for the user, calculated in u8g2_update_dimension_common() */
310297
u8g2_uint_t width;
311298
u8g2_uint_t height;
312299

313300
/* ths is the clip box for the user to check if a specific box has an intersection */
314301
/* use u8g2_IsIntersection from u8g2_intersection.c to test against this intersection */
315-
/* boundary values are part of the box so that they can be used with u8g2_IsIntersection */
302+
/* actually, this window describes the positon of the current page */
316303
u8g2_uint_t user_x0; /* left corner of the buffer */
317304
u8g2_uint_t user_x1; /* right corner of the buffer (excluded) */
318305
u8g2_uint_t user_y0; /* upper edge of the buffer */
319306
u8g2_uint_t user_y1; /* lower edge of the buffer (excluded) */
320307

308+
#ifdef U8G2_WITH_CLIP_WINDOW_SUPPORT
309+
/* clip window */
310+
u8g2_uint_t clip_x0; /* left corner of the clip window */
311+
u8g2_uint_t clip_x1; /* right corner of the clip window (excluded) */
312+
u8g2_uint_t clip_y0; /* upper edge of the clip window */
313+
u8g2_uint_t clip_y1; /* lower edge of the clip window (excluded) */
314+
#endif /* U8G2_WITH_CLIP_WINDOW_SUPPORT */
315+
316+
321317
/* information about the current font */
322318
const uint8_t *font; /* current font for all text procedures */
323319
// removed: const u8g2_kerning_t *kerning; /* can be NULL */
@@ -327,6 +323,11 @@ struct u8g2_struct
327323
u8g2_font_decode_t font_decode; /* new font decode structure */
328324
u8g2_font_info_t font_info; /* new font info structure */
329325

326+
#ifdef U8G2_WITH_CLIP_WINDOW_SUPPORT
327+
/* 1 of there is an intersection between user_?? and clip_?? box */
328+
uint8_t is_page_clip_window_intersection;
329+
#endif /* U8G2_WITH_CLIP_WINDOW_SUPPORT */
330+
330331
uint8_t font_height_mode;
331332
int8_t font_ref_ascent;
332333
int8_t font_ref_descent;
@@ -341,16 +342,6 @@ struct u8g2_struct
341342
// the following variable should be renamed to is_buffer_auto_clear
342343
uint8_t is_auto_page_clear; /* set to 0 to disable automatic clear of the buffer in firstPage() and nextPage() */
343344

344-
#ifdef U8G2_WITH_HVLINE_COUNT
345-
unsigned long hv_cnt;
346-
#endif /* U8G2_WITH_HVLINE_COUNT */
347-
348-
// removed, there is now the new index table
349-
//#ifdef __unix__
350-
// uint16_t last_unicode;
351-
// const uint8_t *last_font_data;
352-
//#endif
353-
354345
};
355346

356347
#define u8g2_GetU8x8(u8g2) ((u8x8_t *)(u8g2))
@@ -419,6 +410,9 @@ extern const u8g2_cb_t u8g2_cb_mirror;
419410
420411
*/
421412

413+
void u8g2_SetMaxClipWindow(u8g2_t *u8g2);
414+
void u8g2_SetClipWindow(u8g2_t *u8g2, u8g2_uint_t clip_x0, u8g2_uint_t clip_y0, u8g2_uint_t clip_x1, u8g2_uint_t clip_y1 );
415+
422416
void u8g2_SetupBuffer(u8g2_t *u8g2, uint8_t *buf, uint8_t tile_buf_height, u8g2_draw_ll_hvline_cb ll_hvline_cb, const u8g2_cb_t *u8g2_cb);
423417
void u8g2_SetDisplayRotation(u8g2_t *u8g2, const u8g2_cb_t *u8g2_cb);
424418

src/clib/u8g2_buffer.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ void u8g2_SendBuffer(u8g2_t *u8g2)
100100
void u8g2_SetBufferCurrTileRow(u8g2_t *u8g2, uint8_t row)
101101
{
102102
u8g2->tile_curr_row = row;
103-
u8g2->cb->update(u8g2);
103+
u8g2->cb->update_dimension(u8g2);
104+
u8g2->cb->update_page_win(u8g2);
104105
}
105106

106107
void u8g2_FirstPage(u8g2_t *u8g2)

0 commit comments

Comments
 (0)