File tree 3 files changed +6
-6
lines changed
applications/services/gui
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -329,10 +329,10 @@ static void canvas_draw_u8g2_bitmap_int(
329
329
330
330
void canvas_draw_u8g2_bitmap (
331
331
u8g2_t * u8g2 ,
332
- u8g2_uint_t x ,
333
- u8g2_uint_t y ,
334
- u8g2_uint_t w ,
335
- u8g2_uint_t h ,
332
+ uint8_t x ,
333
+ uint8_t y ,
334
+ uint8_t w ,
335
+ uint8_t h ,
336
336
const uint8_t * bitmap ,
337
337
IconRotation rotation ) {
338
338
u8g2_uint_t blen ;
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ void canvas_draw_u8g2_bitmap(
100
100
uint8_t width ,
101
101
uint8_t height ,
102
102
const uint8_t * bitmap ,
103
- uint8_t rotation );
103
+ IconRotation rotation );
104
104
105
105
#ifdef __cplusplus
106
106
}
Original file line number Diff line number Diff line change 67
67
Use 16 Bit mode for any display with more than 240 pixel in one
68
68
direction.
69
69
*/
70
- // #define U8G2_16BIT
70
+ #define U8G2_16BIT
71
71
72
72
/*
73
73
The following macro switches the library into dynamic display buffer allocation mode.
You can’t perform that action at this time.
0 commit comments