Skip to content

Commit 985b5ef

Browse files
committed
fix(shields): LVGL fixes for nice!view screen
* Bump the LVGL mem pool size needed for custom screen. * Fixes for LVGL drawing/label usage.
1 parent 2ab9363 commit 985b5ef

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

app/boards/shields/nice_view/Kconfig.defconfig

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ choice ZMK_DISPLAY_STATUS_SCREEN
2424
default ZMK_DISPLAY_STATUS_SCREEN_CUSTOM
2525
endchoice
2626

27+
config LV_Z_MEM_POOL_SIZE
28+
default 4096 if ZMK_DISPLAY_STATUS_SCREEN_CUSTOM
29+
2730
config ZMK_DISPLAY_STATUS_SCREEN_CUSTOM
2831
imply NICE_VIEW_WIDGET_STATUS
2932

app/boards/shields/nice_view/widgets/status.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ static void draw_middle(lv_obj_t *widget, lv_color_t cbuf[], const struct status
149149
for (int i = 0; i < 5; i++) {
150150
bool selected = i == state->active_profile_index;
151151

152-
lv_canvas_draw_arc(canvas, circle_offsets[i][0], circle_offsets[i][1], 13, 0, 359,
152+
lv_canvas_draw_arc(canvas, circle_offsets[i][0], circle_offsets[i][1], 13, 0, 360,
153153
&arc_dsc);
154154

155155
if (selected) {
@@ -180,7 +180,7 @@ static void draw_bottom(lv_obj_t *widget, lv_color_t cbuf[], const struct status
180180

181181
// Draw layer
182182
if (state->layer_label == NULL) {
183-
char text[9] = {};
183+
char text[10] = {};
184184

185185
sprintf(text, "LAYER %i", state->layer_index);
186186

0 commit comments

Comments
 (0)