update
This commit is contained in:
parent
6bb2f7bd99
commit
e6f42400e7
|
@ -154,8 +154,8 @@ class U8G2 : public Print
|
|||
uint8_t *getBufferPtr(void) { return u8g2_GetBufferPtr(&u8g2); }
|
||||
uint8_t getBufferTileHeight(void) { return u8g2_GetBufferTileHeight(&u8g2); }
|
||||
uint8_t getBufferTileWidth(void) { return u8g2_GetBufferTileWidth(&u8g2); }
|
||||
uint8_t getBufferCurrTileRow(void) { return u8g2_GetBufferCurrTileRow(&u8g2); }
|
||||
void setBufferCurrTileRow(uint8_t row) { u8g2_SetBufferCurrTileRow(&u8g2, row); }
|
||||
uint8_t getPageCurrTileRow(void) { return u8g2_GetPageCurrTileRow(&u8g2); }
|
||||
void setPageCurrTileRow(uint8_t row) { u8g2_SetPageCurrTileRow(&u8g2, row); }
|
||||
|
||||
void setAutoPageClear(uint8_t mode) { u8g2_SetAutoPageClear(&u8g2, mode); }
|
||||
|
||||
|
|
|
@ -586,7 +586,7 @@ void u8g2_Setup_a2printer_384x240_f(u8g2_t *u8g2, const u8g2_cb_t *rotation, u8x
|
|||
void u8g2_SendBuffer(u8g2_t *u8g2);
|
||||
void u8g2_ClearBuffer(u8g2_t *u8g2);
|
||||
|
||||
void u8g2_SetBufferCurrTileRow(u8g2_t *u8g2, uint8_t row) U8G2_NOINLINE;
|
||||
void u8g2_SetPageCurrTileRow(u8g2_t *u8g2, uint8_t row) U8G2_NOINLINE;
|
||||
void u8g2_FirstPage(u8g2_t *u8g2);
|
||||
uint8_t u8g2_NextPage(u8g2_t *u8g2);
|
||||
|
||||
|
@ -594,7 +594,7 @@ uint8_t u8g2_NextPage(u8g2_t *u8g2);
|
|||
#define u8g2_GetBufferTileHeight(u8g2) ((u8g2)->tile_buf_height)
|
||||
#define u8g2_GetBufferTileWidth(u8g2) (u8g2_GetU8x8(u8g2)->display_info->tile_width)
|
||||
/* the following variable is only valid after calling u8g2_FirstPage */
|
||||
#define u8g2_GetBufferCurrTileRow(u8g2) ((u8g2)->tile_curr_row)
|
||||
#define u8g2_GetPageCurrTileRow(u8g2) ((u8g2)->tile_curr_row)
|
||||
|
||||
/*==========================================*/
|
||||
/* u8g2_ll_hvline.c */
|
||||
|
|
Loading…
Reference in New Issue