chore: fix minor issues

This commit is contained in:
Gabor Kiss-Vamosi
2023-11-20 12:47:22 +01:00
parent 4bc03a8bea
commit 1756671b91
3 changed files with 4 additions and 4 deletions

View File

@@ -50,8 +50,8 @@ static void create_ui(void)
lv_obj_t * scr = lv_screen_active();
/*Declare static array of integers, and test grid setting options*/
static lv_coord_t gird_cols[] = {300, LV_GRID_FR(3), LV_GRID_FR(2), LV_GRID_TEMPLATE_LAST};
static lv_coord_t gird_rows[] = {100, LV_GRID_FR(1), LV_GRID_CONTENT, LV_GRID_TEMPLATE_LAST};
static int32_t gird_cols[] = {300, LV_GRID_FR(3), LV_GRID_FR(2), LV_GRID_TEMPLATE_LAST};
static int32_t gird_rows[] = {100, LV_GRID_FR(1), LV_GRID_CONTENT, LV_GRID_TEMPLATE_LAST};
lv_obj_set_grid_dsc_array(scr, gird_cols, gird_rows);
static lv_subject_t chart_type_subject;

View File

@@ -1,4 +1,4 @@
#if LV_BUILD_TEST || 1
#if LV_BUILD_TEST
#include "../lvgl.h"
#include "unity/unity.h"