parent
4ea9b78ab3
commit
9127c90b2e
|
@ -58,7 +58,14 @@
|
||||||
#define ITEMS_1 1
|
#define ITEMS_1 1
|
||||||
//设置界面,选项卡1(从上往下数)
|
//设置界面,选项卡1(从上往下数)
|
||||||
//{
|
//{
|
||||||
#define CONTENT_1_0 1
|
//照明 -> ON & OFF
|
||||||
|
#define CONTENT_1_0 4
|
||||||
|
|
||||||
|
//参数保存 -> 保存
|
||||||
|
#define CONTENT_1_1 10
|
||||||
|
|
||||||
|
//参数复位 -> 复位
|
||||||
|
#define CONTENT_1_2 16
|
||||||
//}
|
//}
|
||||||
|
|
||||||
#define ITEMS_2 2
|
#define ITEMS_2 2
|
||||||
|
@ -123,6 +130,9 @@ void scr_setting_recover(void);
|
||||||
//详细设置界面
|
//详细设置界面
|
||||||
void scr_setting_run(void);
|
void scr_setting_run(void);
|
||||||
|
|
||||||
|
//处理弹窗
|
||||||
|
void tab_window_deal(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -175,6 +175,9 @@ typedef struct
|
||||||
uint8_t content_focus; //内容焦点
|
uint8_t content_focus; //内容焦点
|
||||||
uint8_t content_cursor_x; //游标的横坐标,从左至右,最大范围0~5
|
uint8_t content_cursor_x; //游标的横坐标,从左至右,最大范围0~5
|
||||||
uint8_t content_cursor_y; //游标的纵坐标,从上至下,最大范围0~5
|
uint8_t content_cursor_y; //游标的纵坐标,从上至下,最大范围0~5
|
||||||
|
uint8_t window_deal_flag; //弹窗处理标志
|
||||||
|
uint8_t window_cursor; //弹窗游标
|
||||||
|
uint8_t window_cursor_prv; //前一刻的弹窗游标
|
||||||
|
|
||||||
//ITEMS_0
|
//ITEMS_0
|
||||||
SIG_FUNCTIONS_TYPE content00; //电压单位V/mV
|
SIG_FUNCTIONS_TYPE content00; //电压单位V/mV
|
||||||
|
|
|
@ -12,6 +12,9 @@ void tab_dada_init(void)
|
||||||
tabdata.content_focus = 0; //默认无焦点
|
tabdata.content_focus = 0; //默认无焦点
|
||||||
tabdata.content_cursor_x = 0; //游标横坐标
|
tabdata.content_cursor_x = 0; //游标横坐标
|
||||||
tabdata.content_cursor_y = 0; //游标纵坐标
|
tabdata.content_cursor_y = 0; //游标纵坐标
|
||||||
|
tabdata.window_deal_flag = 0; //弹窗处理标志
|
||||||
|
tabdata.window_cursor = 0; //弹窗游标
|
||||||
|
tabdata.window_cursor_prv = 0; //前一刻的弹窗游标
|
||||||
|
|
||||||
//设置界面的初始默认值
|
//设置界面的初始默认值
|
||||||
//ITEMS_0 选项卡0
|
//ITEMS_0 选项卡0
|
||||||
|
@ -57,187 +60,285 @@ void tab_dada_init(void)
|
||||||
//KEY_SETTING
|
//KEY_SETTING
|
||||||
void key_functions_setting(void)
|
void key_functions_setting(void)
|
||||||
{
|
{
|
||||||
switch (key)
|
if(tabdata.window_deal_flag)
|
||||||
{
|
{
|
||||||
case KEY_BACK:
|
//处理弹窗
|
||||||
|
tab_window_deal();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
switch (key)
|
||||||
{
|
{
|
||||||
key = 0;
|
case KEY_BACK:
|
||||||
|
|
||||||
//所有选项卡均未选中时,返回主界面,否则熄灭当前选中
|
|
||||||
if(tabdata.content_cursor == 99)
|
|
||||||
{
|
{
|
||||||
//下次进入设置页面时,从选项卡0开始
|
key = 0;
|
||||||
tabdata.item_cursor = 0;
|
|
||||||
|
|
||||||
//加载主界面
|
//所有选项卡均未选中时,返回主界面,否则熄灭当前选中
|
||||||
setup_scr_screen_main(&guider_ui);
|
if(tabdata.content_cursor == 99)
|
||||||
lv_scr_load(guider_ui.screen_main);
|
|
||||||
|
|
||||||
//切换至菜单后,清除主界面对象,释放内存
|
|
||||||
lv_obj_del(guider_ui.screen_setting);
|
|
||||||
|
|
||||||
//当前界面为主界面
|
|
||||||
m5data.scr_now = SCREEN_MAIN;
|
|
||||||
|
|
||||||
//恢复之前显示的数据
|
|
||||||
scr_main_recover();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if(tabdata.content_focus == 0)
|
|
||||||
{
|
{
|
||||||
//当不存在焦点时
|
//下次进入设置页面时,从选项卡0开始
|
||||||
//某个选项卡被选中时,熄灭内部选中的内容
|
tabdata.item_cursor = 0;
|
||||||
|
|
||||||
|
//加载主界面
|
||||||
|
setup_scr_screen_main(&guider_ui);
|
||||||
|
lv_scr_load(guider_ui.screen_main);
|
||||||
|
|
||||||
|
//切换至菜单后,清除主界面对象,释放内存
|
||||||
|
lv_obj_del(guider_ui.screen_setting);
|
||||||
|
|
||||||
|
//当前界面为主界面
|
||||||
|
m5data.scr_now = SCREEN_MAIN;
|
||||||
|
|
||||||
|
//恢复之前显示的数据
|
||||||
|
scr_main_recover();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if(tabdata.content_focus == 0)
|
||||||
|
{
|
||||||
|
//当不存在焦点时
|
||||||
|
//某个选项卡被选中时,熄灭内部选中的内容
|
||||||
|
switch (tabdata.item_cursor)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
//熄灭当前内容
|
||||||
|
setting_contents_check(99, tabdata.content_cursor);
|
||||||
|
|
||||||
|
//取消内容选中与焦点
|
||||||
|
tabdata.content_cursor = 99;
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
tabdata.content_focus = 0;
|
||||||
|
tabdata.content_cursor_x = 0;
|
||||||
|
tabdata.content_cursor_y = 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{
|
||||||
|
//取消内容选中与焦点
|
||||||
|
//熄灭当前内容
|
||||||
|
setting_contents_check(99, tabdata.content_cursor);
|
||||||
|
|
||||||
|
tabdata.content_cursor = 99;
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
tabdata.content_focus = 0;
|
||||||
|
tabdata.content_cursor_x = 0;
|
||||||
|
tabdata.content_cursor_y = 0;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_2:
|
||||||
|
{
|
||||||
|
//取消内容选中与焦点
|
||||||
|
tabdata.content_cursor = 99;
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
tabdata.content_focus = 0;
|
||||||
|
tabdata.content_cursor_x = 0;
|
||||||
|
tabdata.content_cursor_y = 0;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_3:
|
||||||
|
{
|
||||||
|
//取消内容选中与焦点
|
||||||
|
tabdata.content_cursor = 99;
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
tabdata.content_focus = 0;
|
||||||
|
tabdata.content_cursor_x = 0;
|
||||||
|
tabdata.content_cursor_y = 0;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//当存在焦点时
|
||||||
|
tabdata.content_focus = 0;
|
||||||
|
setting_contents_check(tabdata.content_cursor, 99);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KEY_UP:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
|
||||||
|
//内部游标为99时,说明未选中任何一个选项卡,此时的up和down用于切换选项卡
|
||||||
|
if(tabdata.content_cursor == 99)
|
||||||
|
{
|
||||||
|
tabdata.item_cursor_prv = tabdata.item_cursor;
|
||||||
|
tabdata.item_cursor = (tabdata.item_cursor <= 0)?(3):(tabdata.item_cursor - 1);
|
||||||
|
|
||||||
|
setting_items_check(tabdata.item_cursor, tabdata.item_cursor_prv);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//某个内容被焦点前,在此处选择内容值
|
||||||
|
if(tabdata.content_focus == 0)
|
||||||
|
{
|
||||||
|
switch (tabdata.item_cursor)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
if(tabdata.content_cursor_x != 1)
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_y = (tabdata.content_cursor_y <= 0)?(5):(tabdata.content_cursor_y - 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_y = (tabdata.content_cursor_y == 0)?(4):(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
|
||||||
|
tabdata.content_cursor_x = 4; //固定4
|
||||||
|
tabdata.content_cursor_y = (tabdata.content_cursor_y <= 0)?(2):(tabdata.content_cursor_y - 1);
|
||||||
|
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//某个内容被焦点后,在此处修改内容值
|
||||||
|
setting_contents_modify(tabdata.item_cursor, tabdata.content_cursor, KEY_UP, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KEY_DOWN:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
|
||||||
|
//内部游标为99时,说明未选中任何一个选项卡,此时的up和down用于切换选项卡
|
||||||
|
if(tabdata.content_cursor == 99)
|
||||||
|
{
|
||||||
|
tabdata.item_cursor_prv = tabdata.item_cursor;
|
||||||
|
tabdata.item_cursor = (tabdata.item_cursor >= 3)?(0):(tabdata.item_cursor + 1);
|
||||||
|
|
||||||
|
setting_items_check(tabdata.item_cursor, tabdata.item_cursor_prv);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if(tabdata.content_focus == 0)
|
||||||
|
{
|
||||||
|
//某个内容被焦点前,在此处选择内容值
|
||||||
|
switch (tabdata.item_cursor)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
if(tabdata.content_cursor_x != 1)
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_y = (tabdata.content_cursor_y >= 5)?(0):(tabdata.content_cursor_y + 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_y = (tabdata.content_cursor_y == 0)?(4):(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
|
||||||
|
tabdata.content_cursor_x = 4; //固定4
|
||||||
|
tabdata.content_cursor_y = (tabdata.content_cursor_y >= 2)?(0):(tabdata.content_cursor_y + 1);
|
||||||
|
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//某个内容被焦点后,在此处修改内容值
|
||||||
|
setting_contents_modify(tabdata.item_cursor, tabdata.content_cursor, KEY_DOWN, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KEY_OK:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
|
||||||
|
//OK键用于选择选项卡时:选项卡未选中时内部内容全部熄灭
|
||||||
|
if(tabdata.content_cursor == 99)
|
||||||
|
{
|
||||||
|
//选中后点亮第一个内容
|
||||||
switch (tabdata.item_cursor)
|
switch (tabdata.item_cursor)
|
||||||
{
|
{
|
||||||
case ITEMS_0:
|
case ITEMS_0:
|
||||||
{
|
{
|
||||||
//熄灭当前内容
|
tabdata.content_cursor_x = 1;
|
||||||
setting_contents_check(99, tabdata.content_cursor);
|
|
||||||
|
|
||||||
//取消内容选中与焦点
|
|
||||||
tabdata.content_cursor = 99;
|
|
||||||
tabdata.content_cursor_prv = 99;
|
|
||||||
tabdata.content_focus = 0;
|
|
||||||
tabdata.content_cursor_x = 0;
|
|
||||||
tabdata.content_cursor_y = 0;
|
tabdata.content_cursor_y = 0;
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_1:
|
case ITEMS_1:
|
||||||
{
|
{
|
||||||
//取消内容选中与焦点
|
tabdata.content_cursor_x = 4;
|
||||||
//熄灭当前内容
|
|
||||||
setting_contents_check(99, tabdata.content_cursor);
|
|
||||||
|
|
||||||
tabdata.content_cursor = 99;
|
|
||||||
tabdata.content_cursor_prv = 99;
|
|
||||||
tabdata.content_focus = 0;
|
|
||||||
tabdata.content_cursor_x = 0;
|
|
||||||
tabdata.content_cursor_y = 0;
|
tabdata.content_cursor_y = 0;
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_2:
|
case ITEMS_2:
|
||||||
{
|
{
|
||||||
//取消内容选中与焦点
|
|
||||||
tabdata.content_cursor = 99;
|
|
||||||
tabdata.content_cursor_prv = 99;
|
|
||||||
tabdata.content_focus = 0;
|
|
||||||
tabdata.content_cursor_x = 0;
|
tabdata.content_cursor_x = 0;
|
||||||
tabdata.content_cursor_y = 0;
|
tabdata.content_cursor_y = 0;
|
||||||
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
|
tabdata.content_cursor_prv = 99;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_3:
|
case ITEMS_3:
|
||||||
{
|
{
|
||||||
//取消内容选中与焦点
|
|
||||||
tabdata.content_cursor = 99;
|
|
||||||
tabdata.content_cursor_prv = 99;
|
|
||||||
tabdata.content_focus = 0;
|
|
||||||
tabdata.content_cursor_x = 0;
|
tabdata.content_cursor_x = 0;
|
||||||
tabdata.content_cursor_y = 0;
|
tabdata.content_cursor_y = 0;
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//当存在焦点时
|
|
||||||
tabdata.content_focus = 0;
|
|
||||||
setting_contents_check(tabdata.content_cursor, 99);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case KEY_UP:
|
|
||||||
{
|
|
||||||
key = 0;
|
|
||||||
|
|
||||||
//内部游标为99时,说明未选中任何一个选项卡,此时的up和down用于切换选项卡
|
|
||||||
if(tabdata.content_cursor == 99)
|
|
||||||
{
|
|
||||||
tabdata.item_cursor_prv = tabdata.item_cursor;
|
|
||||||
tabdata.item_cursor = (tabdata.item_cursor <= 0)?(3):(tabdata.item_cursor - 1);
|
|
||||||
|
|
||||||
setting_items_check(tabdata.item_cursor, tabdata.item_cursor_prv);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//某个内容被焦点前,在此处选择内容值
|
|
||||||
if(tabdata.content_focus == 0)
|
|
||||||
{
|
|
||||||
switch (tabdata.item_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
tabdata.content_cursor_prv = tabdata.content_cursor;
|
|
||||||
if(tabdata.content_cursor_x != 1)
|
|
||||||
{
|
|
||||||
tabdata.content_cursor_y = (tabdata.content_cursor_y <= 0)?(5):(tabdata.content_cursor_y - 1);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
tabdata.content_cursor_y = (tabdata.content_cursor_y == 0)?(4):(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
tabdata.content_cursor_prv = 99;
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//某个内容被焦点后,在此处修改内容值
|
|
||||||
setting_contents_modify(tabdata.item_cursor, tabdata.content_cursor, KEY_UP, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case KEY_DOWN:
|
|
||||||
{
|
|
||||||
key = 0;
|
|
||||||
|
|
||||||
//内部游标为99时,说明未选中任何一个选项卡,此时的up和down用于切换选项卡
|
|
||||||
if(tabdata.content_cursor == 99)
|
|
||||||
{
|
|
||||||
tabdata.item_cursor_prv = tabdata.item_cursor;
|
|
||||||
tabdata.item_cursor = (tabdata.item_cursor >= 3)?(0):(tabdata.item_cursor + 1);
|
|
||||||
|
|
||||||
setting_items_check(tabdata.item_cursor, tabdata.item_cursor_prv);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if(tabdata.content_focus == 0)
|
|
||||||
{
|
|
||||||
//某个内容被焦点前,在此处选择内容值
|
|
||||||
switch (tabdata.item_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
tabdata.content_cursor_prv = tabdata.content_cursor;
|
|
||||||
if(tabdata.content_cursor_x != 1)
|
|
||||||
{
|
|
||||||
tabdata.content_cursor_y = (tabdata.content_cursor_y >= 5)?(0):(tabdata.content_cursor_y + 1);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
tabdata.content_cursor_y = (tabdata.content_cursor_y == 0)?(4):(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -248,178 +349,132 @@ void key_functions_setting(void)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
//某个内容被焦点后,在此处修改内容值
|
//进入此处说明选项卡已被选中,此时需要选择内容
|
||||||
setting_contents_modify(tabdata.item_cursor, tabdata.content_cursor, KEY_DOWN, 1);
|
//内容焦点后,通过KEY_UP和KEY_DOWN修改
|
||||||
|
//KEY_BACK按下后,取消焦点
|
||||||
|
tabdata.content_focus = 1;
|
||||||
|
|
||||||
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
|
|
||||||
|
//部分内容特殊处理
|
||||||
|
//参数保存,确认窗口
|
||||||
|
if( ( tabdata.item_cursor == ITEMS_1 )&&( tabdata.content_cursor == CONTENT_1_1 ) )
|
||||||
|
{
|
||||||
|
tabdata.window_deal_flag = 1;
|
||||||
|
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_cont_window, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_label_set_text(guider_ui.screen_setting_label_question, "明暗完成");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//参数复位,确认窗口
|
||||||
|
if( ( tabdata.item_cursor == ITEMS_1 )&&( tabdata.content_cursor == CONTENT_1_2 ) )
|
||||||
|
{
|
||||||
|
tabdata.window_deal_flag = 1;
|
||||||
|
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_cont_window, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_label_set_text(guider_ui.screen_setting_label_question, "背景颜色");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
break;
|
|
||||||
|
|
||||||
case KEY_OK:
|
//仅用于选择内容
|
||||||
{
|
case KEY_LEFT:
|
||||||
key = 0;
|
|
||||||
|
|
||||||
//OK键用于选择选项卡时:选项卡未选中时内部内容全部熄灭
|
|
||||||
if(tabdata.content_cursor == 99)
|
|
||||||
{
|
{
|
||||||
//选中后点亮第一个内容
|
key = 0;
|
||||||
|
|
||||||
|
if( (tabdata.content_cursor == 99)||(tabdata.content_focus == 1) )
|
||||||
|
{
|
||||||
|
//选项卡未选中时,直接返回
|
||||||
|
//已经存在焦点时,直接返回
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
switch (tabdata.item_cursor)
|
switch (tabdata.item_cursor)
|
||||||
{
|
{
|
||||||
case ITEMS_0:
|
case ITEMS_0:
|
||||||
{
|
{
|
||||||
tabdata.content_cursor_x = 1;
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
tabdata.content_cursor_y = 0;
|
|
||||||
|
tabdata.content_cursor_x = (tabdata.content_cursor_x <= 1)?(5):(tabdata.content_cursor_x - 2);
|
||||||
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
tabdata.content_cursor_prv = 99;
|
|
||||||
|
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_1:
|
case ITEMS_1:
|
||||||
{
|
{}
|
||||||
tabdata.content_cursor_x = 1;
|
|
||||||
tabdata.content_cursor_y = 0;
|
|
||||||
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
|
||||||
tabdata.content_cursor_prv = 99;
|
|
||||||
|
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_2:
|
case ITEMS_2:
|
||||||
{
|
{}
|
||||||
tabdata.content_cursor_x = 0;
|
|
||||||
tabdata.content_cursor_y = 0;
|
|
||||||
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
|
||||||
tabdata.content_cursor_prv = 99;
|
|
||||||
|
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ITEMS_3:
|
case ITEMS_3:
|
||||||
{
|
{
|
||||||
tabdata.content_cursor_x = 0;
|
}
|
||||||
tabdata.content_cursor_y = 0;
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
//仅用于选择内容
|
||||||
|
case KEY_RIGHT:
|
||||||
|
{
|
||||||
|
key = 0;
|
||||||
|
|
||||||
|
if( (tabdata.content_cursor == 99)||(tabdata.content_focus == 1) )
|
||||||
|
{
|
||||||
|
//选项卡未选中时,直接返回
|
||||||
|
//已经存在焦点时,直接返回
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (tabdata.item_cursor)
|
||||||
|
{
|
||||||
|
case ITEMS_0:
|
||||||
|
{
|
||||||
|
tabdata.content_cursor_prv = tabdata.content_cursor;
|
||||||
|
|
||||||
|
tabdata.content_cursor_x = (tabdata.content_cursor_x >= 5)?(1):(tabdata.content_cursor_x + 2);
|
||||||
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
||||||
tabdata.content_cursor_prv = 99;
|
|
||||||
|
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ITEMS_1:
|
||||||
|
{}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_2:
|
||||||
|
{}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ITEMS_3:
|
||||||
|
{
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
{
|
{
|
||||||
//进入此处说明选项卡已被选中,此时需要选择内容
|
key = 0;
|
||||||
//内容焦点后,通过KEY_UP和KEY_DOWN修改
|
|
||||||
//KEY_BACK按下后,取消焦点
|
|
||||||
tabdata.content_focus = 1;
|
|
||||||
|
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
|
|
||||||
//仅用于选择内容
|
|
||||||
case KEY_LEFT:
|
|
||||||
{
|
|
||||||
key = 0;
|
|
||||||
|
|
||||||
if( (tabdata.content_cursor == 99)||(tabdata.content_focus == 1) )
|
|
||||||
{
|
|
||||||
//选项卡未选中时,直接返回
|
|
||||||
//已经存在焦点时,直接返回
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (tabdata.item_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
tabdata.content_cursor_prv = tabdata.content_cursor;
|
|
||||||
|
|
||||||
tabdata.content_cursor_x = (tabdata.content_cursor_x <= 1)?(5):(tabdata.content_cursor_x - 2);
|
|
||||||
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
|
||||||
|
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_2:
|
|
||||||
{}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_3:
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
//仅用于选择内容
|
|
||||||
case KEY_RIGHT:
|
|
||||||
{
|
|
||||||
key = 0;
|
|
||||||
|
|
||||||
if( (tabdata.content_cursor == 99)||(tabdata.content_focus == 1) )
|
|
||||||
{
|
|
||||||
//选项卡未选中时,直接返回
|
|
||||||
//已经存在焦点时,直接返回
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (tabdata.item_cursor)
|
|
||||||
{
|
|
||||||
case ITEMS_0:
|
|
||||||
{
|
|
||||||
tabdata.content_cursor_prv = tabdata.content_cursor;
|
|
||||||
|
|
||||||
tabdata.content_cursor_x = (tabdata.content_cursor_x >= 5)?(1):(tabdata.content_cursor_x + 2);
|
|
||||||
tabdata.content_cursor = contents_xy2cursor(tabdata.content_cursor_x, tabdata.content_cursor_y);
|
|
||||||
|
|
||||||
setting_contents_check(tabdata.content_cursor, tabdata.content_cursor_prv);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_1:
|
|
||||||
{}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_2:
|
|
||||||
{}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ITEMS_3:
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
{
|
|
||||||
key = 0;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -858,6 +913,16 @@ void contents_modify_item_1(uint8_t cursor, int8_t step)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case CONTENT_1_1:
|
||||||
|
{}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case CONTENT_1_2:
|
||||||
|
{}
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1093,11 +1158,11 @@ void setting_update(uint8_t ite, uint8_t con)
|
||||||
{
|
{
|
||||||
if (tabdata.light_flag)
|
if (tabdata.light_flag)
|
||||||
{
|
{
|
||||||
lv_label_set_text(guider_ui.screen_setting_label_01, "ON");
|
lv_label_set_text(guider_ui.screen_setting_label_04, "ON");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
lv_label_set_text(guider_ui.screen_setting_label_01, "OFF");
|
lv_label_set_text(guider_ui.screen_setting_label_04, "OFF");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1174,8 +1239,20 @@ void contents_refresh(uint8_t items_prv, uint8_t items_now)
|
||||||
|
|
||||||
case ITEMS_1:
|
case ITEMS_1:
|
||||||
{
|
{
|
||||||
|
//照明
|
||||||
lv_obj_add_flag(guider_ui.screen_setting_label_00, LV_OBJ_FLAG_HIDDEN);
|
lv_obj_add_flag(guider_ui.screen_setting_label_00, LV_OBJ_FLAG_HIDDEN);
|
||||||
lv_obj_add_flag(guider_ui.screen_setting_label_01, LV_OBJ_FLAG_HIDDEN);
|
//ON&OFF
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_04, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
|
||||||
|
//参数 保存 保存
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_10, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_11, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_14, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
|
||||||
|
//参数 复位 复位
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_20, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_21, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_label_24, LV_OBJ_FLAG_HIDDEN);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -1365,16 +1442,30 @@ void contents_refresh(uint8_t items_prv, uint8_t items_now)
|
||||||
lv_obj_clear_flag(guider_ui.screen_setting_label_00, LV_OBJ_FLAG_HIDDEN);
|
lv_obj_clear_flag(guider_ui.screen_setting_label_00, LV_OBJ_FLAG_HIDDEN);
|
||||||
lv_label_set_text(guider_ui.screen_setting_label_00, "照明");
|
lv_label_set_text(guider_ui.screen_setting_label_00, "照明");
|
||||||
|
|
||||||
lv_obj_clear_flag(guider_ui.screen_setting_label_01, LV_OBJ_FLAG_HIDDEN);
|
lv_obj_clear_flag(guider_ui.screen_setting_label_04, LV_OBJ_FLAG_HIDDEN);
|
||||||
if(tabdata.light_flag)
|
if(tabdata.light_flag)
|
||||||
{
|
{
|
||||||
lv_label_set_text(guider_ui.screen_setting_label_01, "ON");
|
lv_label_set_text(guider_ui.screen_setting_label_04, "ON");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
lv_label_set_text(guider_ui.screen_setting_label_01, "OFF");
|
lv_label_set_text(guider_ui.screen_setting_label_04, "OFF");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_10, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_label_set_text(guider_ui.screen_setting_label_10, "参数");
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_11, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_label_set_text(guider_ui.screen_setting_label_11, "保存");
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_14, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_label_set_text(guider_ui.screen_setting_label_14, "保存");
|
||||||
|
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_20, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_label_set_text(guider_ui.screen_setting_label_20, "参数");
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_21, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_label_set_text(guider_ui.screen_setting_label_21, "复位");
|
||||||
|
lv_obj_clear_flag(guider_ui.screen_setting_label_24, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_label_set_text(guider_ui.screen_setting_label_24, "复位");
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -1640,6 +1731,82 @@ void scr_setting_recover(void)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//处理弹窗
|
||||||
|
void tab_window_deal(void)
|
||||||
|
{
|
||||||
|
uint8_t step_window = key;
|
||||||
|
key = 0;
|
||||||
|
switch (step_window)
|
||||||
|
{
|
||||||
|
case KEY_LEFT:
|
||||||
|
{
|
||||||
|
tabdata.window_cursor_prv = tabdata.window_cursor;
|
||||||
|
tabdata.window_cursor = !tabdata.window_cursor;
|
||||||
|
|
||||||
|
if(tabdata.window_cursor == 0)
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_ok, lv_color_hex(0x629aff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_back, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_ok, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_back, lv_color_hex(0x629aff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KEY_RIGHT:
|
||||||
|
{
|
||||||
|
tabdata.window_cursor_prv = tabdata.window_cursor;
|
||||||
|
tabdata.window_cursor = !tabdata.window_cursor;
|
||||||
|
|
||||||
|
if(tabdata.window_cursor == 0)
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_ok, lv_color_hex(0x629aff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_back, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_ok, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_back, lv_color_hex(0x629aff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KEY_OK:
|
||||||
|
{
|
||||||
|
if(tabdata.window_cursor == 0)
|
||||||
|
{
|
||||||
|
//OK
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//BACK
|
||||||
|
step_window = KEY_BACK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KEY_BACK:
|
||||||
|
{
|
||||||
|
tabdata.content_focus = 0;
|
||||||
|
setting_contents_check(tabdata.content_cursor, 99);
|
||||||
|
|
||||||
|
tabdata.window_deal_flag = 0;
|
||||||
|
tabdata.window_cursor_prv = 0;
|
||||||
|
tabdata.window_cursor = 0;
|
||||||
|
lv_obj_add_flag(guider_ui.screen_setting_cont_window, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_ok, lv_color_hex(0x629aff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(guider_ui.screen_setting_label_back, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
uint8_t scroll_flag = 0;
|
uint8_t scroll_flag = 0;
|
||||||
void scr_setting_run(void) //详细设置界面
|
void scr_setting_run(void) //详细设置界面
|
||||||
{
|
{
|
||||||
|
|
|
@ -106,6 +106,10 @@ typedef struct
|
||||||
lv_obj_t *screen_setting_label_35;
|
lv_obj_t *screen_setting_label_35;
|
||||||
lv_obj_t *screen_setting_label_45;
|
lv_obj_t *screen_setting_label_45;
|
||||||
lv_obj_t *screen_setting_label_55;
|
lv_obj_t *screen_setting_label_55;
|
||||||
|
lv_obj_t *screen_setting_cont_window;
|
||||||
|
lv_obj_t *screen_setting_label_back;
|
||||||
|
lv_obj_t *screen_setting_label_ok;
|
||||||
|
lv_obj_t *screen_setting_label_question;
|
||||||
lv_obj_t *screen_hidden;
|
lv_obj_t *screen_hidden;
|
||||||
bool screen_hidden_del;
|
bool screen_hidden_del;
|
||||||
lv_obj_t *screen_hidden_label_1;
|
lv_obj_t *screen_hidden_label_1;
|
||||||
|
|
|
@ -786,6 +786,60 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
|
0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
|
||||||
0x0, 0x0, 0x0,
|
0x0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+4E2D "中" */
|
||||||
|
0x0, 0x0, 0x9, 0x30, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0xd, 0x10, 0x0, 0x0, 0x10, 0x0, 0xd, 0x10,
|
||||||
|
0x0, 0x20, 0xb7, 0x66, 0x6e, 0x76, 0x66, 0xf2,
|
||||||
|
0xb2, 0x0, 0xd, 0x10, 0x0, 0xe0, 0xb2, 0x0,
|
||||||
|
0xd, 0x10, 0x0, 0xe0, 0xb2, 0x0, 0xd, 0x10,
|
||||||
|
0x0, 0xe0, 0xb8, 0x66, 0x6e, 0x76, 0x66, 0xf0,
|
||||||
|
0xb2, 0x0, 0xd, 0x10, 0x0, 0xb0, 0x0, 0x0,
|
||||||
|
0xd, 0x10, 0x0, 0x0, 0x0, 0x0, 0xd, 0x10,
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0xd, 0x10, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+4F4D "位" */
|
||||||
|
0x0, 0x7, 0x40, 0x5, 0x10, 0x0, 0x0, 0x0,
|
||||||
|
0x1f, 0x20, 0x1, 0xd0, 0x0, 0x0, 0x0, 0x6a,
|
||||||
|
0x0, 0x0, 0xa4, 0x2, 0x0, 0x0, 0xc2, 0x56,
|
||||||
|
0x66, 0x66, 0x6c, 0x80, 0x3, 0xf3, 0x0, 0x0,
|
||||||
|
0x0, 0x32, 0x0, 0x9, 0xd1, 0x6, 0x10, 0x0,
|
||||||
|
0xc7, 0x0, 0x43, 0xc1, 0x1, 0xa0, 0x0, 0xf1,
|
||||||
|
0x0, 0x20, 0xc1, 0x0, 0xb2, 0x2, 0xb0, 0x0,
|
||||||
|
0x0, 0xc1, 0x0, 0x78, 0x6, 0x60, 0x0, 0x0,
|
||||||
|
0xc1, 0x0, 0x5a, 0x9, 0x10, 0x0, 0x0, 0xc1,
|
||||||
|
0x0, 0x27, 0x8, 0x0, 0x0, 0x0, 0xc1, 0x0,
|
||||||
|
0x0, 0x23, 0x4, 0x70, 0x0, 0xb3, 0x66, 0x66,
|
||||||
|
0x66, 0x66, 0x61,
|
||||||
|
|
||||||
|
/* U+4FDD "保" */
|
||||||
|
0x0, 0x8, 0x21, 0x0, 0x0, 0x3, 0x0, 0x0,
|
||||||
|
0x2e, 0xe, 0x66, 0x66, 0x6f, 0x20, 0x0, 0x77,
|
||||||
|
0xe, 0x0, 0x0, 0xe, 0x0, 0x0, 0xd1, 0xe,
|
||||||
|
0x0, 0x0, 0xe, 0x0, 0x3, 0xf1, 0xe, 0x66,
|
||||||
|
0x66, 0x6e, 0x0, 0x9, 0xe0, 0xb, 0x0, 0xe0,
|
||||||
|
0x8, 0x0, 0x42, 0xd0, 0x0, 0x0, 0xe0, 0x2,
|
||||||
|
0x70, 0x10, 0xd2, 0x66, 0x6c, 0xf9, 0x67, 0x71,
|
||||||
|
0x0, 0xd0, 0x0, 0x3e, 0xf7, 0x20, 0x0, 0x0,
|
||||||
|
0xd0, 0x0, 0xc3, 0xe0, 0xb2, 0x0, 0x0, 0xd0,
|
||||||
|
0xa, 0x40, 0xe0, 0x3d, 0x70, 0x0, 0xd1, 0x71,
|
||||||
|
0x0, 0xe0, 0x2, 0xc3, 0x0, 0xc1, 0x0, 0x0,
|
||||||
|
0xd0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+503C "值" */
|
||||||
|
0x0, 0x8, 0x20, 0x1, 0xa1, 0x0, 0x0, 0x0,
|
||||||
|
0x2e, 0x0, 0x2, 0xd0, 0x2, 0x60, 0x0, 0x78,
|
||||||
|
0x56, 0x68, 0xd6, 0x67, 0x81, 0x0, 0xd2, 0x3,
|
||||||
|
0x2, 0xa0, 0x5, 0x0, 0x3, 0xf1, 0xe, 0x66,
|
||||||
|
0x66, 0x7e, 0x10, 0x9, 0xf0, 0xe, 0x0, 0x0,
|
||||||
|
0x1d, 0x0, 0x34, 0xe0, 0xe, 0x66, 0x66, 0x7d,
|
||||||
|
0x0, 0x20, 0xe0, 0xe, 0x0, 0x0, 0x1d, 0x0,
|
||||||
|
0x0, 0xe0, 0xe, 0x66, 0x66, 0x7d, 0x0, 0x0,
|
||||||
|
0xe0, 0xe, 0x0, 0x0, 0x1d, 0x0, 0x0, 0xe0,
|
||||||
|
0xe, 0x66, 0x66, 0x7d, 0x0, 0x0, 0xe0, 0xe,
|
||||||
|
0x0, 0x0, 0x1d, 0x50, 0x0, 0xd2, 0x68, 0x66,
|
||||||
|
0x66, 0x68, 0x84,
|
||||||
|
|
||||||
/* U+538B "压" */
|
/* U+538B "压" */
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0,
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0,
|
||||||
0xb6, 0x66, 0x66, 0x66, 0x6a, 0xb0, 0x0, 0xd0,
|
0xb6, 0x66, 0x66, 0x66, 0x6a, 0xb0, 0x0, 0xd0,
|
||||||
|
@ -801,6 +855,107 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0x66, 0x66, 0x60, 0x10, 0x0, 0x0, 0x0, 0x0,
|
0x66, 0x66, 0x60, 0x10, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0, 0x0,
|
0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+53C2 "参" */
|
||||||
|
0x0, 0x0, 0x3, 0x70, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x5d, 0x40, 0x14, 0x0, 0x0, 0x0, 0x2a,
|
||||||
|
0x70, 0x1, 0x16, 0xd3, 0x0, 0x0, 0xcd, 0xcc,
|
||||||
|
0xe7, 0x63, 0x4b, 0x0, 0x0, 0x0, 0xa, 0x90,
|
||||||
|
0x0, 0x1, 0x60, 0x16, 0x66, 0xbc, 0x66, 0x79,
|
||||||
|
0x67, 0x71, 0x0, 0x6, 0xa0, 0x2b, 0x16, 0x70,
|
||||||
|
0x0, 0x0, 0x77, 0x4, 0xd3, 0x1, 0x6d, 0x82,
|
||||||
|
0x25, 0x12, 0x97, 0x2, 0xc9, 0x1, 0x91, 0x0,
|
||||||
|
0x44, 0x1, 0x8b, 0x40, 0x63, 0x0, 0x0, 0x4,
|
||||||
|
0x77, 0x30, 0x2b, 0xb3, 0x0, 0x0, 0x31, 0x0,
|
||||||
|
0x5b, 0xa4, 0x0, 0x0, 0x0, 0x36, 0x78, 0x51,
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+56F4 "围" */
|
||||||
|
0x20, 0x0, 0x0, 0x0, 0x0, 0x40, 0xc7, 0x66,
|
||||||
|
0x68, 0x66, 0x66, 0xe4, 0xc1, 0x0, 0xe, 0x0,
|
||||||
|
0x30, 0xd1, 0xc2, 0x66, 0x6e, 0x67, 0xa1, 0xd1,
|
||||||
|
0xc1, 0x0, 0xd, 0x2, 0x20, 0xd1, 0xc1, 0x36,
|
||||||
|
0x6e, 0x68, 0x80, 0xd1, 0xc1, 0x0, 0xd, 0x0,
|
||||||
|
0x20, 0xd1, 0xc3, 0x66, 0x6e, 0x66, 0xd3, 0xd1,
|
||||||
|
0xc1, 0x0, 0xd, 0x0, 0xd0, 0xd1, 0xc1, 0x0,
|
||||||
|
0xd, 0x4b, 0xb0, 0xd1, 0xc1, 0x0, 0xd, 0x2,
|
||||||
|
0x0, 0xd1, 0xc7, 0x66, 0x67, 0x66, 0x66, 0xe1,
|
||||||
|
0xb1, 0x0, 0x0, 0x0, 0x0, 0xc0,
|
||||||
|
|
||||||
|
/* U+590D "复" */
|
||||||
|
0x0, 0x5, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x1e, 0x40, 0x0, 0x0, 0x19, 0x0, 0x0, 0x8a,
|
||||||
|
0x66, 0x66, 0x66, 0x66, 0x20, 0x3, 0xaa, 0x66,
|
||||||
|
0x66, 0x67, 0xb0, 0x0, 0x27, 0xd, 0x0, 0x0,
|
||||||
|
0x2, 0xb0, 0x0, 0x0, 0xd, 0x66, 0x66, 0x68,
|
||||||
|
0xb0, 0x0, 0x0, 0xd, 0x66, 0x66, 0x68, 0xb0,
|
||||||
|
0x0, 0x0, 0x8, 0x96, 0x0, 0x1, 0x50, 0x0,
|
||||||
|
0x0, 0x4, 0xe7, 0x66, 0x69, 0xc0, 0x0, 0x0,
|
||||||
|
0x2c, 0x73, 0x0, 0x4d, 0x20, 0x0, 0x2, 0x91,
|
||||||
|
0x6, 0x87, 0xb1, 0x0, 0x0, 0x1, 0x0, 0x6,
|
||||||
|
0xcd, 0xa6, 0x20, 0x0, 0x3, 0x67, 0x83, 0x0,
|
||||||
|
0x39, 0xcf, 0xc1, 0x1, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x10,
|
||||||
|
|
||||||
|
/* U+5B58 "存" */
|
||||||
|
0x0, 0x0, 0x7, 0x40, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0xe1, 0x0, 0x0, 0x10, 0x6, 0x66, 0x8d,
|
||||||
|
0x66, 0x66, 0x6d, 0x80, 0x0, 0xb, 0x20, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0x4, 0x93, 0x66, 0x66, 0x89,
|
||||||
|
0x0, 0x0, 0xd2, 0x0, 0x0, 0x2d, 0x30, 0x0,
|
||||||
|
0x8f, 0x0, 0x0, 0x59, 0x0, 0x0, 0x64, 0xe0,
|
||||||
|
0x0, 0xd, 0x10, 0x72, 0x12, 0xe, 0x16, 0x66,
|
||||||
|
0xe7, 0x67, 0x50, 0x0, 0xe0, 0x0, 0xd, 0x0,
|
||||||
|
0x0, 0x0, 0xe, 0x0, 0x0, 0xd0, 0x0, 0x0,
|
||||||
|
0x0, 0xe0, 0x2, 0x1e, 0x0, 0x0, 0x0, 0xc,
|
||||||
|
0x0, 0x2b, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+5B8C "完" */
|
||||||
|
0x0, 0x0, 0x0, 0x72, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x10, 0x0, 0x3d, 0x0, 0x0, 0x0, 0x0, 0xb6,
|
||||||
|
0x66, 0x69, 0x66, 0x67, 0xd2, 0x9, 0x80, 0x0,
|
||||||
|
0x0, 0x0, 0x6, 0x80, 0x9, 0x15, 0x66, 0x66,
|
||||||
|
0x6b, 0xa3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
|
||||||
|
0x40, 0x4, 0x66, 0x7d, 0x66, 0xd6, 0x67, 0x70,
|
||||||
|
0x0, 0x0, 0x3d, 0x0, 0xe0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x79, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0xd2, 0x0, 0xe0, 0x0, 0x3, 0x0, 0xb, 0x50,
|
||||||
|
0x0, 0xe0, 0x0, 0x34, 0x3, 0x93, 0x0, 0x0,
|
||||||
|
0xcd, 0xdd, 0xe7, 0x12, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+6210 "成" */
|
||||||
|
0x0, 0x0, 0x0, 0x8, 0x34, 0x10, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0xc, 0x11, 0xc3, 0x0, 0x0, 0x20,
|
||||||
|
0x0, 0xc, 0x20, 0x15, 0x50, 0x0, 0xf6, 0x66,
|
||||||
|
0x6d, 0x86, 0x67, 0x70, 0x0, 0xe0, 0x0, 0x8,
|
||||||
|
0x50, 0x0, 0x0, 0x0, 0xe0, 0x4, 0x16, 0x70,
|
||||||
|
0x5c, 0x10, 0x0, 0xe6, 0x6c, 0x63, 0xa0, 0xa5,
|
||||||
|
0x0, 0x1, 0xd0, 0xa, 0x30, 0xd2, 0xe0, 0x0,
|
||||||
|
0x2, 0xc0, 0xb, 0x20, 0x9d, 0x40, 0x0, 0x4,
|
||||||
|
0x90, 0xd, 0x0, 0x6e, 0x0, 0x0, 0x7, 0x43,
|
||||||
|
0xda, 0x3, 0x98, 0xa0, 0x50, 0xa, 0x0, 0x10,
|
||||||
|
0x47, 0x0, 0x9c, 0xb0, 0x42, 0x0, 0x4, 0x20,
|
||||||
|
0x0, 0x5, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+6570 "数" */
|
||||||
|
0x0, 0x2, 0x90, 0x20, 0x19, 0x10, 0x0, 0x5,
|
||||||
|
0x63, 0xa3, 0xb0, 0x4c, 0x0, 0x0, 0x0, 0xa3,
|
||||||
|
0xa6, 0x32, 0x78, 0x0, 0x20, 0x6, 0x6c, 0xd6,
|
||||||
|
0x87, 0xa9, 0x67, 0xd7, 0x0, 0x4e, 0xca, 0x30,
|
||||||
|
0xc0, 0x9, 0x60, 0x2, 0xa4, 0xa1, 0xd4, 0xb0,
|
||||||
|
0xc, 0x30, 0x16, 0x5, 0x70, 0x6, 0x33, 0xe,
|
||||||
|
0x0, 0x0, 0xd, 0x30, 0x40, 0x8, 0x4b, 0x0,
|
||||||
|
0x6, 0xbb, 0x68, 0xd1, 0x9, 0xb4, 0x0, 0x0,
|
||||||
|
0xc1, 0x9, 0x40, 0x4, 0xe0, 0x0, 0x1, 0x7a,
|
||||||
|
0x9c, 0x0, 0x1c, 0xb6, 0x0, 0x0, 0x4, 0xac,
|
||||||
|
0x61, 0xa2, 0xd, 0x70, 0x3, 0x65, 0x0, 0x66,
|
||||||
|
0x0, 0x1, 0xc7, 0x1, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0,
|
||||||
|
|
||||||
/* U+660E "明" */
|
/* U+660E "明" */
|
||||||
0x0, 0x0, 0x0, 0x10, 0x0, 0x2, 0xc, 0x66,
|
0x0, 0x0, 0x0, 0x10, 0x0, 0x2, 0xc, 0x66,
|
||||||
0x7d, 0xe, 0x66, 0x67, 0xf1, 0xd0, 0x2, 0xb0,
|
0x7d, 0xe, 0x66, 0x67, 0xf1, 0xd0, 0x2, 0xb0,
|
||||||
|
@ -815,31 +970,33 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0x50, 0x0, 0x4, 0xf7, 0x0, 0x0, 0x0, 0x0,
|
0x50, 0x0, 0x4, 0xf7, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0, 0x0, 0x0,
|
0x0, 0x0, 0x0,
|
||||||
|
|
||||||
/* U+663E "显" */
|
/* U+666F "景" */
|
||||||
0x0, 0x1, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0,
|
0x0, 0x3, 0x0, 0x0, 0x0, 0x41, 0x0, 0x0,
|
||||||
0x1e, 0x66, 0x66, 0x66, 0x9d, 0x0, 0x0, 0x1c,
|
0xe, 0x66, 0x66, 0x66, 0xc7, 0x0, 0x0, 0xe,
|
||||||
0x0, 0x0, 0x0, 0x3a, 0x0, 0x0, 0x1e, 0x66,
|
0x66, 0x66, 0x66, 0xc4, 0x0, 0x0, 0xe, 0x0,
|
||||||
0x66, 0x66, 0x8a, 0x0, 0x0, 0x1c, 0x0, 0x0,
|
0x0, 0x0, 0xa4, 0x0, 0x0, 0xd, 0x67, 0xd7,
|
||||||
0x0, 0x3a, 0x0, 0x0, 0x1e, 0x66, 0x66, 0x66,
|
0x66, 0xa2, 0x0, 0x6, 0x66, 0x66, 0xb9, 0x66,
|
||||||
0x8a, 0x0, 0x0, 0x5, 0xc, 0x10, 0xc2, 0x12,
|
0x68, 0xe1, 0x0, 0x2, 0x0, 0x0, 0x0, 0x40,
|
||||||
0x0, 0x1, 0x50, 0xe, 0x0, 0xe0, 0x8, 0x90,
|
0x0, 0x0, 0x9, 0x86, 0x66, 0x66, 0xf2, 0x0,
|
||||||
0x0, 0x85, 0xe, 0x0, 0xe0, 0xd, 0x10, 0x0,
|
0x0, 0x9, 0x20, 0x0, 0x0, 0xe0, 0x0, 0x0,
|
||||||
0x1d, 0xe, 0x0, 0xe0, 0x75, 0x0, 0x0, 0x9,
|
0x9, 0x76, 0xb8, 0x66, 0xc0, 0x0, 0x0, 0x7,
|
||||||
0xe, 0x0, 0xe1, 0x60, 0x0, 0x0, 0x0, 0xe,
|
0x90, 0xa3, 0x17, 0x50, 0x0, 0x0, 0x88, 0x11,
|
||||||
0x0, 0xe0, 0x0, 0x92, 0x6, 0x66, 0x66, 0x66,
|
0xb3, 0x0, 0x7e, 0x30, 0x5, 0x10, 0x7, 0xd0,
|
||||||
0x66, 0x66, 0x65,
|
0x0, 0x4, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0,
|
||||||
|
|
||||||
/* U+66F2 "曲" */
|
/* U+6697 "暗" */
|
||||||
0x0, 0x2, 0x70, 0x8, 0x0, 0x0, 0x0, 0x3,
|
0x0, 0x0, 0x0, 0x8, 0x20, 0x0, 0x4, 0x0,
|
||||||
0xa0, 0xe, 0x0, 0x0, 0x0, 0x3, 0xa0, 0xe,
|
0x50, 0x0, 0x4a, 0x1, 0x20, 0xe6, 0x6f, 0x36,
|
||||||
0x0, 0x0, 0x96, 0x68, 0xd6, 0x6e, 0x66, 0xd3,
|
0x66, 0x66, 0x89, 0xd, 0x0, 0xd0, 0x37, 0x0,
|
||||||
0xc2, 0x3, 0xa0, 0xe, 0x0, 0xe0, 0xc2, 0x3,
|
0x87, 0x0, 0xd0, 0xd, 0x0, 0xc3, 0x1a, 0x1,
|
||||||
0xa0, 0xe, 0x0, 0xe0, 0xc2, 0x3, 0xa0, 0xe,
|
0xe, 0x66, 0xd5, 0x68, 0x79, 0x77, 0xd2, 0xd0,
|
||||||
0x0, 0xe0, 0xc7, 0x68, 0xd6, 0x6e, 0x66, 0xf0,
|
0xd, 0x0, 0x0, 0x0, 0x10, 0xd, 0x0, 0xd0,
|
||||||
0xc2, 0x3, 0xa0, 0xe, 0x0, 0xe0, 0xc2, 0x3,
|
0xd6, 0x66, 0x6e, 0x20, 0xd0, 0xd, 0xd, 0x0,
|
||||||
0xa0, 0xe, 0x0, 0xe0, 0xc2, 0x3, 0xa0, 0xe,
|
0x0, 0xd0, 0xe, 0x66, 0xd0, 0xd5, 0x55, 0x5e,
|
||||||
0x0, 0xe0, 0xc8, 0x68, 0xd6, 0x6e, 0x66, 0xf0,
|
0x0, 0xd0, 0xd, 0xd, 0x0, 0x0, 0xd0, 0xc,
|
||||||
0xb1, 0x0, 0x0, 0x0, 0x0, 0xd0,
|
0x0, 0x30, 0xd6, 0x66, 0x6e, 0x0, 0x0, 0x0,
|
||||||
|
0xc, 0x0, 0x0, 0xc0, 0x0,
|
||||||
|
|
||||||
/* U+6D41 "流" */
|
/* U+6D41 "流" */
|
||||||
0x1, 0x50, 0x0, 0x4, 0x50, 0x0, 0x0, 0x0,
|
0x1, 0x50, 0x0, 0x4, 0x50, 0x0, 0x0, 0x0,
|
||||||
|
@ -898,37 +1055,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0x0, 0x4, 0x0, 0x0, 0xd1, 0x0, 0x0, 0x55,
|
0x0, 0x4, 0x0, 0x0, 0xd1, 0x0, 0x0, 0x55,
|
||||||
0x0, 0x0, 0x8f, 0xee, 0xee, 0xe5,
|
0x0, 0x0, 0x8f, 0xee, 0xee, 0xe5,
|
||||||
|
|
||||||
/* U+793A "示" */
|
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
||||||
0x3, 0x66, 0x66, 0x66, 0x6b, 0xb0, 0x0, 0x0,
|
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
||||||
0x0, 0x0, 0x0, 0x1, 0xa1, 0x0, 0x66, 0x66,
|
|
||||||
0x68, 0xd6, 0x66, 0x66, 0x30, 0x0, 0x0, 0x0,
|
|
||||||
0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x99, 0x3,
|
|
||||||
0xa0, 0x36, 0x0, 0x0, 0x0, 0x1d, 0x10, 0x3a,
|
|
||||||
0x0, 0x6a, 0x0, 0x0, 0xa, 0x40, 0x3, 0xa0,
|
|
||||||
0x0, 0xa9, 0x0, 0x6, 0x40, 0x0, 0x3a, 0x0,
|
|
||||||
0x1, 0xf0, 0x1, 0x20, 0x0, 0x4, 0xa0, 0x0,
|
|
||||||
0x5, 0x0, 0x0, 0x0, 0x15, 0xf6, 0x0, 0x0,
|
|
||||||
0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0,
|
|
||||||
0x0,
|
|
||||||
|
|
||||||
/* U+7EBF "线" */
|
|
||||||
0x0, 0x6, 0x10, 0x2, 0x93, 0x10, 0x0, 0x0,
|
|
||||||
0x3d, 0x10, 0x3, 0xc0, 0xc5, 0x0, 0x0, 0xa3,
|
|
||||||
0x10, 0x2, 0xc0, 0x27, 0x0, 0x4, 0x70, 0x9a,
|
|
||||||
0x1, 0xd3, 0x5b, 0xa0, 0x2b, 0x56, 0xd1, 0x66,
|
|
||||||
0xf2, 0x0, 0x0, 0x19, 0x6d, 0x20, 0x0, 0xd1,
|
|
||||||
0x0, 0x71, 0x0, 0x93, 0x0, 0x1, 0xc8, 0x67,
|
|
||||||
0x94, 0x8, 0x43, 0x54, 0x64, 0x87, 0xd, 0x60,
|
|
||||||
0x2f, 0xb6, 0x10, 0x0, 0x1d, 0xaa, 0x0, 0x0,
|
|
||||||
0x0, 0x3, 0x0, 0xd, 0xc0, 0x0, 0x2, 0x6a,
|
|
||||||
0x81, 0x1, 0xb9, 0xe3, 0x5, 0xd, 0x71, 0x0,
|
|
||||||
0x69, 0x20, 0x3e, 0x77, 0x0, 0x0, 0x26, 0x20,
|
|
||||||
0x0, 0x3, 0xda, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
||||||
0x0, 0x0,
|
|
||||||
|
|
||||||
/* U+7F6E "置" */
|
/* U+7F6E "置" */
|
||||||
0x0, 0x30, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0,
|
0x0, 0x30, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0,
|
||||||
0xe6, 0x6e, 0x66, 0xe6, 0x6e, 0x30, 0x0, 0xe0,
|
0xe6, 0x6e, 0x66, 0xe6, 0x6e, 0x30, 0x0, 0xe0,
|
||||||
|
@ -943,6 +1069,48 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0x0, 0x0, 0xd2, 0x60, 0x26, 0x68, 0x66, 0x66,
|
0x0, 0x0, 0xd2, 0x60, 0x26, 0x68, 0x66, 0x66,
|
||||||
0x66, 0x87, 0x81,
|
0x66, 0x87, 0x81,
|
||||||
|
|
||||||
|
/* U+80CC "背" */
|
||||||
|
0x0, 0x0, 0x7, 0x11, 0x60, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0xe, 0x2, 0xb0, 0x4c, 0x30, 0x5, 0x66,
|
||||||
|
0x6e, 0x2, 0xc6, 0x61, 0x0, 0x0, 0x25, 0x6e,
|
||||||
|
0x2, 0xb0, 0x0, 0x50, 0x2e, 0x94, 0xe, 0x1,
|
||||||
|
0xea, 0xaa, 0xd0, 0x0, 0x3, 0x6, 0x0, 0x12,
|
||||||
|
0x72, 0x0, 0x0, 0xe, 0x66, 0x66, 0x67, 0xf2,
|
||||||
|
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0xd0, 0x0,
|
||||||
|
0x0, 0xe, 0x66, 0x66, 0x66, 0xd0, 0x0, 0x0,
|
||||||
|
0xe, 0x0, 0x0, 0x0, 0xd0, 0x0, 0x0, 0xe,
|
||||||
|
0x66, 0x66, 0x66, 0xd0, 0x0, 0x0, 0xe, 0x0,
|
||||||
|
0x0, 0x11, 0xd0, 0x0, 0x0, 0xd, 0x0, 0x0,
|
||||||
|
0x3c, 0x70, 0x0,
|
||||||
|
|
||||||
|
/* U+8272 "色" */
|
||||||
|
0x0, 0x0, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x7, 0xc0, 0x1, 0x40, 0x0, 0x0, 0x0, 0x1e,
|
||||||
|
0x66, 0x6c, 0xa0, 0x0, 0x0, 0x0, 0x95, 0x0,
|
||||||
|
0x29, 0x0, 0x0, 0x0, 0x5, 0xf6, 0x66, 0xc6,
|
||||||
|
0x66, 0xd6, 0x0, 0x44, 0xd1, 0x0, 0xe0, 0x0,
|
||||||
|
0xc2, 0x0, 0x0, 0xd1, 0x0, 0xe0, 0x0, 0xc2,
|
||||||
|
0x0, 0x0, 0xd7, 0x66, 0xe6, 0x66, 0xd2, 0x0,
|
||||||
|
0x0, 0xd1, 0x0, 0x0, 0x0, 0xc2, 0x0, 0x0,
|
||||||
|
0xd1, 0x0, 0x0, 0x0, 0x20, 0x10, 0x0, 0xd1,
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x60, 0x0, 0xc2, 0x0,
|
||||||
|
0x0, 0x0, 0x5, 0x80, 0x0, 0x5d, 0xdd, 0xdd,
|
||||||
|
0xdd, 0xde, 0xc0,
|
||||||
|
|
||||||
|
/* U+8303 "范" */
|
||||||
|
0x0, 0x0, 0x83, 0x0, 0x19, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0xd0, 0x0, 0x2b, 0x2, 0x80, 0x16, 0x66,
|
||||||
|
0xe6, 0x66, 0x7d, 0x66, 0x61, 0x0, 0x20, 0xb0,
|
||||||
|
0x0, 0x29, 0x0, 0x0, 0x0, 0x8a, 0x0, 0x96,
|
||||||
|
0x66, 0x7a, 0x0, 0x0, 0x5, 0x50, 0xd0, 0x0,
|
||||||
|
0x2b, 0x0, 0x1b, 0x53, 0x40, 0xd0, 0x0, 0x2a,
|
||||||
|
0x0, 0x1, 0x79, 0x0, 0xd0, 0x0, 0x2a, 0x0,
|
||||||
|
0x0, 0x65, 0x0, 0xd0, 0x3, 0x79, 0x0, 0x6,
|
||||||
|
0xe0, 0x0, 0xd0, 0x0, 0x51, 0x0, 0x3, 0xc0,
|
||||||
|
0x0, 0xd0, 0x0, 0x0, 0x30, 0x1, 0xf0, 0x0,
|
||||||
|
0xd1, 0x0, 0x0, 0x80, 0x1, 0xd0, 0x0, 0x8e,
|
||||||
|
0xdd, 0xdd, 0xe3,
|
||||||
|
|
||||||
/* U+8BBE "设" */
|
/* U+8BBE "设" */
|
||||||
0x3, 0x30, 0x0, 0x10, 0x0, 0x20, 0x0, 0x0,
|
0x3, 0x30, 0x0, 0x10, 0x0, 0x20, 0x0, 0x0,
|
||||||
0xa7, 0x0, 0xd6, 0x66, 0xf1, 0x0, 0x0, 0x1e,
|
0xa7, 0x0, 0xd6, 0x66, 0xf1, 0x0, 0x0, 0x1e,
|
||||||
|
@ -1017,6 +1185,22 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0xb2, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0xb2, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0,
|
0x0,
|
||||||
|
|
||||||
|
/* U+989C "颜" */
|
||||||
|
0x0, 0x8, 0x20, 0x0, 0x0, 0x2, 0x10, 0x0,
|
||||||
|
0x0, 0x29, 0x25, 0x66, 0xa7, 0x9a, 0x0, 0x16,
|
||||||
|
0x86, 0x6b, 0x70, 0xc, 0x0, 0x0, 0x0, 0x9,
|
||||||
|
0x33, 0x90, 0x74, 0xa4, 0x83, 0x0, 0x3, 0x25,
|
||||||
|
0x63, 0x4d, 0x23, 0x2b, 0x30, 0x0, 0xc6, 0x68,
|
||||||
|
0x75, 0xd0, 0xb2, 0xa2, 0x0, 0xc, 0x1, 0xc3,
|
||||||
|
0xd, 0xb, 0xa, 0x20, 0x0, 0xc3, 0x92, 0x81,
|
||||||
|
0xd0, 0xb0, 0xa2, 0x0, 0xc, 0x0, 0xa6, 0xd,
|
||||||
|
0xc, 0xa, 0x20, 0x0, 0xc1, 0x94, 0x75, 0xb1,
|
||||||
|
0xa1, 0x71, 0x0, 0xa, 0x20, 0x6b, 0x0, 0x85,
|
||||||
|
0x59, 0x0, 0x3, 0x60, 0x79, 0x0, 0x49, 0x0,
|
||||||
|
0x6c, 0x0, 0x63, 0x72, 0x1, 0x65, 0x0, 0x0,
|
||||||
|
0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0,
|
||||||
|
|
||||||
/* U+F001 "" */
|
/* U+F001 "" */
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0, 0x0, 0x0, 0x0, 0x2, 0x7b, 0xfb, 0x0,
|
0x0, 0x0, 0x0, 0x0, 0x2, 0x7b, 0xfb, 0x0,
|
||||||
|
@ -1935,82 +2119,95 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
|
||||||
{.bitmap_index = 3916, .adv_w = 224, .box_w = 12, .box_h = 11, .ofs_x = 1, .ofs_y = 0},
|
{.bitmap_index = 3916, .adv_w = 224, .box_w = 12, .box_h = 11, .ofs_x = 1, .ofs_y = 0},
|
||||||
{.bitmap_index = 3982, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 3982, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4073, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4073, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4164, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4164, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1},
|
||||||
{.bitmap_index = 4262, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
{.bitmap_index = 4242, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4353, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4333, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4444, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1},
|
{.bitmap_index = 4424, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4522, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4515, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 4620, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4613, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 4725, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4711, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 1, .ofs_y = -1},
|
||||||
{.bitmap_index = 4816, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 2, .ofs_y = -1},
|
{.bitmap_index = 4789, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 4894, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4887, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 4999, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 4978, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5097, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 5076, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5188, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5174, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5286, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1},
|
{.bitmap_index = 5272, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
||||||
{.bitmap_index = 5371, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
{.bitmap_index = 5363, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5462, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5461, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1},
|
||||||
{.bitmap_index = 5567, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5546, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5672, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 5644, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5785, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5749, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 5862, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 5840, .adv_w = 224, .box_w = 12, .box_h = 13, .ofs_x = 2, .ofs_y = -1},
|
||||||
{.bitmap_index = 5953, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5918, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6030, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 6009, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6085, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6100, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6190, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6191, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6295, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6282, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6399, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6380, .adv_w = 224, .box_w = 13, .box_h = 13, .ofs_x = 1, .ofs_y = -1},
|
||||||
{.bitmap_index = 6504, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 6465, .adv_w = 224, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
||||||
{.bitmap_index = 6592, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6556, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6697, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6661, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6739, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6766, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6805, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6871, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 6917, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 6984, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 6994, .adv_w = 154, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 7061, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7069, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
{.bitmap_index = 7152, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 7139, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 7229, .adv_w = 154, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 7237, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7284, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7322, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7389, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7407, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
{.bitmap_index = 7494, .adv_w = 252, .box_w = 16, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7477, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1},
|
{.bitmap_index = 7598, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7568, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7703, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 7627, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7791, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7686, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7896, .adv_w = 112, .box_w = 7, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7771, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3},
|
{.bitmap_index = 7938, .adv_w = 168, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7797, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 8004, .adv_w = 252, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7885, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8116, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 8020, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 8193, .adv_w = 154, .box_w = 10, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 8148, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8268, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
||||||
{.bitmap_index = 8239, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 8338, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 8291, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 8436, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8343, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 8521, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8442, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 8606, .adv_w = 196, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = -2},
|
||||||
{.bitmap_index = 8519, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8676, .adv_w = 196, .box_w = 14, .box_h = 13, .ofs_x = -1, .ofs_y = -1},
|
||||||
{.bitmap_index = 8624, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 8767, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8737, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8826, .adv_w = 140, .box_w = 9, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8822, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8885, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8920, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8970, .adv_w = 196, .box_w = 13, .box_h = 4, .ofs_x = 0, .ofs_y = 3},
|
||||||
{.bitmap_index = 9005, .adv_w = 196, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8996, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9083, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9084, .adv_w = 280, .box_w = 18, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 9160, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 9219, .adv_w = 252, .box_w = 17, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 9235, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 9347, .adv_w = 224, .box_w = 14, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 9333, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 9438, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1},
|
||||||
{.bitmap_index = 9431, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9490, .adv_w = 196, .box_w = 13, .box_h = 8, .ofs_x = 0, .ofs_y = 1},
|
||||||
{.bitmap_index = 9519, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 9542, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9639, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 9641, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9722, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 9718, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 9839, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9823, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 9929, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9936, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 10019, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 10021, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 10109, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 10119, .adv_w = 196, .box_w = 13, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 10199, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 10204, .adv_w = 196, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 10289, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 10282, .adv_w = 224, .box_w = 14, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 10397, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 10359, .adv_w = 140, .box_w = 10, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 10487, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 10434, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 10585, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 10532, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 10698, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 10630, .adv_w = 252, .box_w = 16, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 10797, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 10718, .adv_w = 224, .box_w = 16, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 10880, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0}
|
{.bitmap_index = 10838, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 10921, .adv_w = 280, .box_w = 18, .box_h = 13, .ofs_x = 0, .ofs_y = -1},
|
||||||
|
{.bitmap_index = 11038, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
|
{.bitmap_index = 11128, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
|
{.bitmap_index = 11218, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
|
{.bitmap_index = 11308, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
|
{.bitmap_index = 11398, .adv_w = 280, .box_w = 18, .box_h = 10, .ofs_x = 0, .ofs_y = 0},
|
||||||
|
{.bitmap_index = 11488, .adv_w = 280, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = -1},
|
||||||
|
{.bitmap_index = 11596, .adv_w = 196, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 11686, .adv_w = 196, .box_w = 13, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 11784, .adv_w = 224, .box_w = 15, .box_h = 15, .ofs_x = -1, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 11897, .adv_w = 280, .box_w = 18, .box_h = 11, .ofs_x = 0, .ofs_y = 0},
|
||||||
|
{.bitmap_index = 11996, .adv_w = 168, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 12079, .adv_w = 225, .box_w = 15, .box_h = 10, .ofs_x = 0, .ofs_y = 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
/*---------------------
|
/*---------------------
|
||||||
|
@ -2018,16 +2215,18 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
|
||||||
*--------------------*/
|
*--------------------*/
|
||||||
|
|
||||||
static const uint16_t unicode_list_2[] = {
|
static const uint16_t unicode_list_2[] = {
|
||||||
0x0, 0x1d5a, 0x4a61, 0x4a62, 0x4fe2, 0x6265, 0x6295, 0x6349,
|
0x0, 0x1d5a, 0x4a61, 0x4a62, 0x4a84, 0x4ba4, 0x4c34, 0x4c93,
|
||||||
0x6998, 0x6dbe, 0x6fde, 0x718c, 0x7591, 0x7b16, 0x7bc5, 0x8815,
|
0x4fe2, 0x5019, 0x534b, 0x5564, 0x57af, 0x57e3, 0x5e67, 0x61c7,
|
||||||
0x9292, 0x92a7, 0x94d0, 0x94e8, 0xec58, 0xec5f, 0xec62, 0xec63,
|
0x6265, 0x62c6, 0x62ee, 0x6998, 0x6dbe, 0x6fde, 0x718c, 0x7bc5,
|
||||||
0xec64, 0xec68, 0xec6a, 0xec6c, 0xec70, 0xec73, 0xec78, 0xec7d,
|
0x7d23, 0x7ec9, 0x7f5a, 0x8815, 0x9292, 0x92a7, 0x94d0, 0x94e8,
|
||||||
0xec7e, 0xec7f, 0xec95, 0xec9a, 0xec9f, 0xeca2, 0xeca3, 0xeca4,
|
0x94f3, 0xec58, 0xec5f, 0xec62, 0xec63, 0xec64, 0xec68, 0xec6a,
|
||||||
0xeca8, 0xeca9, 0xecaa, 0xecab, 0xecbe, 0xecbf, 0xecc5, 0xecc7,
|
0xec6c, 0xec70, 0xec73, 0xec78, 0xec7d, 0xec7e, 0xec7f, 0xec95,
|
||||||
0xecc8, 0xeccb, 0xecce, 0xeccf, 0xecd0, 0xecd2, 0xecea, 0xecec,
|
0xec9a, 0xec9f, 0xeca2, 0xeca3, 0xeca4, 0xeca8, 0xeca9, 0xecaa,
|
||||||
0xed1b, 0xed1c, 0xed1e, 0xed20, 0xed37, 0xed3e, 0xed41, 0xed4a,
|
0xecab, 0xecbe, 0xecbf, 0xecc5, 0xecc7, 0xecc8, 0xeccb, 0xecce,
|
||||||
0xed73, 0xed7b, 0xedb2, 0xee42, 0xee97, 0xee98, 0xee99, 0xee9a,
|
0xeccf, 0xecd0, 0xecd2, 0xecea, 0xecec, 0xed1b, 0xed1c, 0xed1e,
|
||||||
0xee9b, 0xeede, 0xeeea, 0xef44, 0xef5b, 0xf1b1, 0xf419, 0xf4f9
|
0xed20, 0xed37, 0xed3e, 0xed41, 0xed4a, 0xed73, 0xed7b, 0xedb2,
|
||||||
|
0xee42, 0xee97, 0xee98, 0xee99, 0xee9a, 0xee9b, 0xeede, 0xeeea,
|
||||||
|
0xef44, 0xef5b, 0xf1b1, 0xf419, 0xf4f9
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Collect the unicode lists and glyph_id offsets*/
|
/*Collect the unicode lists and glyph_id offsets*/
|
||||||
|
@ -2043,7 +2242,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] =
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.range_start = 937, .range_length = 62714, .glyph_id_start = 95,
|
.range_start = 937, .range_length = 62714, .glyph_id_start = 95,
|
||||||
.unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 80, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
|
.unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 93, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2076,7 +2275,9 @@ static const uint8_t kern_left_class_mapping[] =
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Map glyph_ids to kern right classes*/
|
/*Map glyph_ids to kern right classes*/
|
||||||
|
@ -2103,7 +2304,9 @@ static const uint8_t kern_right_class_mapping[] =
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Kern values between classes*/
|
/*Kern values between classes*/
|
||||||
|
|
|
@ -852,6 +852,146 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0x3, 0xbb, 0x20, 0x3, 0x40, 0xb1, 0x1b, 0x40,
|
0x3, 0xbb, 0x20, 0x3, 0x40, 0xb1, 0x1b, 0x40,
|
||||||
0x92, 0x7, 0x0, 0x9, 0xb6, 0x0,
|
0x92, 0x7, 0x0, 0x9, 0xb6, 0x0,
|
||||||
|
|
||||||
|
/* U+4F4D "位" */
|
||||||
|
0x0, 0x0, 0x30, 0x0, 0x20, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x1, 0xf6, 0x0, 0x4b, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x6, 0xd0, 0x0, 0xb, 0x80, 0x0, 0x0,
|
||||||
|
0x0, 0xc, 0x60, 0x0, 0x5, 0x80, 0x5, 0x30,
|
||||||
|
0x0, 0x2f, 0x7, 0x77, 0x77, 0x77, 0x7a, 0xa0,
|
||||||
|
0x0, 0x9f, 0x10, 0x0, 0x0, 0x0, 0x42, 0x0,
|
||||||
|
0x1, 0xce, 0x0, 0x70, 0x0, 0x0, 0xe7, 0x0,
|
||||||
|
0x8, 0x2e, 0x0, 0x38, 0x0, 0x2, 0xf1, 0x0,
|
||||||
|
0x32, 0x1e, 0x0, 0xd, 0x10, 0x5, 0xc0, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0xa, 0x60, 0x8, 0x70, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x7, 0xa0, 0xc, 0x10, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x5, 0xc0, 0xa, 0x0, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x2, 0x60, 0x44, 0x0, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x0, 0x0, 0x60, 0x4, 0xa0,
|
||||||
|
0x0, 0x1d, 0x27, 0x77, 0x77, 0x77, 0x77, 0x73,
|
||||||
|
|
||||||
|
/* U+53C2 "参" */
|
||||||
|
0x0, 0x0, 0x0, 0x12, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x2, 0xda, 0x10, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x5d, 0x50, 0x0, 0x78, 0x10, 0x0,
|
||||||
|
0x0, 0x3b, 0xa4, 0x45, 0x56, 0x7b, 0xe2, 0x0,
|
||||||
|
0x0, 0x6c, 0xa9, 0xbd, 0x52, 0x0, 0x76, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0xe8, 0x0, 0x0, 0x5, 0x50,
|
||||||
|
0x17, 0x77, 0x7e, 0xb7, 0x77, 0xa7, 0x78, 0x91,
|
||||||
|
0x0, 0x0, 0xa8, 0x1, 0xa2, 0x47, 0x0, 0x0,
|
||||||
|
0x0, 0x1a, 0x60, 0x2d, 0x80, 0x5, 0xd8, 0x20,
|
||||||
|
0x5, 0x71, 0x7, 0xc4, 0x4, 0xb2, 0x1a, 0xf3,
|
||||||
|
0x21, 0x6, 0x84, 0x1, 0x9d, 0x50, 0x0, 0x10,
|
||||||
|
0x0, 0x20, 0x2, 0x8c, 0x60, 0x7, 0xe3, 0x0,
|
||||||
|
0x0, 0x5, 0x76, 0x20, 0x5, 0xdc, 0x30, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0x38, 0xd9, 0x30, 0x0, 0x0,
|
||||||
|
0x0, 0x26, 0x79, 0x73, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+5426 "否" */
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0,
|
||||||
|
0x7, 0x77, 0x77, 0x77, 0x77, 0x77, 0x8f, 0x90,
|
||||||
|
0x0, 0x0, 0x0, 0xd, 0xc0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0x9f, 0x40, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x8, 0xbf, 0x22, 0x62, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x98, 0xe, 0x20, 0x19, 0xb2, 0x0,
|
||||||
|
0x0, 0x1a, 0x40, 0xe, 0x20, 0x0, 0x3e, 0x60,
|
||||||
|
0x5, 0x60, 0x0, 0xe, 0x20, 0x0, 0x3, 0xd0,
|
||||||
|
0x20, 0x3, 0x0, 0x6, 0x0, 0x1, 0x50, 0x0,
|
||||||
|
0x0, 0xd, 0x86, 0x66, 0x66, 0x69, 0xf2, 0x0,
|
||||||
|
0x0, 0xd, 0x20, 0x0, 0x0, 0x4, 0xc0, 0x0,
|
||||||
|
0x0, 0xd, 0x20, 0x0, 0x0, 0x4, 0xc0, 0x0,
|
||||||
|
0x0, 0xd, 0x20, 0x0, 0x0, 0x4, 0xc0, 0x0,
|
||||||
|
0x0, 0xd, 0x87, 0x77, 0x77, 0x79, 0xc0, 0x0,
|
||||||
|
0x0, 0xd, 0x20, 0x0, 0x0, 0x3, 0x90, 0x0,
|
||||||
|
|
||||||
|
/* U+56DE "回" */
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1b,
|
||||||
|
0x77, 0x77, 0x77, 0x77, 0x77, 0xe5, 0x1e, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0xe2, 0x1e, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0xe1, 0x1e, 0x0, 0xa7, 0x77,
|
||||||
|
0x7d, 0x40, 0xe1, 0x1e, 0x0, 0xe1, 0x0, 0xe,
|
||||||
|
0x20, 0xe1, 0x1e, 0x0, 0xe1, 0x0, 0xe, 0x10,
|
||||||
|
0xe1, 0x1e, 0x0, 0xe1, 0x0, 0xe, 0x10, 0xe1,
|
||||||
|
0x1e, 0x0, 0xe1, 0x0, 0xe, 0x10, 0xe1, 0x1e,
|
||||||
|
0x0, 0xe8, 0x77, 0x7f, 0x10, 0xe1, 0x1e, 0x0,
|
||||||
|
0xe1, 0x0, 0xc, 0x0, 0xe1, 0x1e, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x0, 0xe1, 0x1e, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0xe1, 0x1f, 0x77, 0x77, 0x77, 0x77,
|
||||||
|
0x77, 0xf1, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0xd1,
|
||||||
|
|
||||||
|
/* U+590D "复" */
|
||||||
|
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x1, 0xf7, 0x0, 0x0, 0x0, 0x30, 0x0,
|
||||||
|
0x0, 0x8, 0xe7, 0x77, 0x77, 0x77, 0xdb, 0x0,
|
||||||
|
0x0, 0x1e, 0x20, 0x0, 0x0, 0x1, 0x0, 0x0,
|
||||||
|
0x0, 0xb4, 0xe7, 0x77, 0x77, 0x7f, 0x40, 0x0,
|
||||||
|
0x7, 0x21, 0xe0, 0x0, 0x0, 0xe, 0x10, 0x0,
|
||||||
|
0x0, 0x1, 0xf7, 0x77, 0x77, 0x7f, 0x10, 0x0,
|
||||||
|
0x0, 0x1, 0xe0, 0x0, 0x0, 0xe, 0x10, 0x0,
|
||||||
|
0x0, 0x1, 0xdb, 0xa7, 0x77, 0x7c, 0x10, 0x0,
|
||||||
|
0x0, 0x0, 0x1e, 0x50, 0x0, 0x7, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0xac, 0x77, 0x77, 0xcd, 0x30, 0x0,
|
||||||
|
0x0, 0xa, 0x63, 0x60, 0x5, 0xe1, 0x0, 0x0,
|
||||||
|
0x0, 0x72, 0x0, 0x4a, 0x8b, 0x10, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x3, 0x9b, 0xad, 0x96, 0x31, 0x0,
|
||||||
|
0x2, 0x57, 0x87, 0x10, 0x1, 0x7b, 0xef, 0xa0,
|
||||||
|
0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0,
|
||||||
|
|
||||||
|
/* U+6570 "数" */
|
||||||
|
0x0, 0x0, 0x52, 0x0, 0x0, 0x40, 0x0, 0x0,
|
||||||
|
0x4, 0x30, 0xe1, 0x67, 0x3, 0xf2, 0x0, 0x0,
|
||||||
|
0x0, 0xd2, 0xe1, 0xb1, 0x6, 0xc0, 0x0, 0x0,
|
||||||
|
0x1, 0x63, 0xe4, 0x4a, 0x39, 0x80, 0x1, 0x70,
|
||||||
|
0x15, 0x5c, 0xf9, 0x55, 0x4c, 0x97, 0x8e, 0xb3,
|
||||||
|
0x0, 0x3d, 0xf7, 0xb1, 0x1d, 0x0, 0x3e, 0x0,
|
||||||
|
0x2, 0xb2, 0xe1, 0x8a, 0x6b, 0x0, 0x6b, 0x0,
|
||||||
|
0x27, 0x1, 0xb0, 0x2, 0x73, 0x40, 0x98, 0x0,
|
||||||
|
0x0, 0x9, 0xb1, 0x2, 0x10, 0x90, 0xe4, 0x0,
|
||||||
|
0x17, 0x8e, 0x87, 0xbc, 0x0, 0xa5, 0xd0, 0x0,
|
||||||
|
0x0, 0x97, 0x0, 0xd3, 0x0, 0x4f, 0x50, 0x0,
|
||||||
|
0x2, 0xe4, 0x15, 0xa0, 0x0, 0x5f, 0x40, 0x0,
|
||||||
|
0x0, 0x16, 0xcf, 0x50, 0x3, 0xc4, 0xe3, 0x0,
|
||||||
|
0x0, 0x4, 0xa6, 0xe3, 0x4a, 0x0, 0x6f, 0x60,
|
||||||
|
0x4, 0x65, 0x0, 0x17, 0x40, 0x0, 0x6, 0xe3,
|
||||||
|
0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+662F "是" */
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x3, 0xb7, 0x77, 0x77, 0x78, 0xe3, 0x0,
|
||||||
|
0x0, 0x3, 0xd0, 0x0, 0x0, 0x2, 0xf0, 0x0,
|
||||||
|
0x0, 0x3, 0xe7, 0x77, 0x77, 0x78, 0xe0, 0x0,
|
||||||
|
0x0, 0x3, 0xd0, 0x0, 0x0, 0x2, 0xe0, 0x0,
|
||||||
|
0x0, 0x3, 0xd0, 0x0, 0x0, 0x2, 0xe0, 0x0,
|
||||||
|
0x0, 0x3, 0xe7, 0x77, 0x77, 0x78, 0xe0, 0x0,
|
||||||
|
0x0, 0x1, 0x30, 0x0, 0x0, 0x0, 0x13, 0xb1,
|
||||||
|
0x7, 0x77, 0x77, 0x78, 0xf7, 0x77, 0x77, 0x73,
|
||||||
|
0x0, 0x0, 0x67, 0x2, 0xe0, 0x0, 0x21, 0x0,
|
||||||
|
0x0, 0x0, 0xd5, 0x2, 0xf7, 0x77, 0xdc, 0x0,
|
||||||
|
0x0, 0x3, 0xf0, 0x2, 0xe0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0xb, 0x37, 0x2, 0xe0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x66, 0x4, 0xb7, 0xe0, 0x0, 0x0, 0x0,
|
||||||
|
0x5, 0x40, 0x0, 0x29, 0xde, 0xff, 0xff, 0xf7,
|
||||||
|
0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+786E "确" */
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x31, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x0, 0x5, 0x20, 0xd8, 0x0, 0x30, 0x0,
|
||||||
|
0x17, 0x8c, 0x7a, 0x83, 0xe8, 0x79, 0xf6, 0x0,
|
||||||
|
0x0, 0x5b, 0x0, 0x9, 0x50, 0xb, 0x70, 0x0,
|
||||||
|
0x0, 0x87, 0x0, 0x2d, 0x0, 0x46, 0x0, 0x50,
|
||||||
|
0x0, 0xc2, 0x0, 0x8e, 0x87, 0xd9, 0x78, 0xf2,
|
||||||
|
0x0, 0xe2, 0x27, 0x1d, 0x20, 0xb3, 0x1, 0xe0,
|
||||||
|
0x5, 0xf4, 0x4f, 0x3d, 0x87, 0xd9, 0x78, 0xe0,
|
||||||
|
0xa, 0xf0, 0xe, 0xd, 0x20, 0xb3, 0x1, 0xe0,
|
||||||
|
0x26, 0xf0, 0xe, 0xe, 0x10, 0xb3, 0x1, 0xe0,
|
||||||
|
0x20, 0xf0, 0xe, 0xf, 0x87, 0xd9, 0x78, 0xe0,
|
||||||
|
0x0, 0xf0, 0xe, 0x1d, 0x0, 0xb3, 0x1, 0xe0,
|
||||||
|
0x0, 0xf7, 0x7f, 0x48, 0x0, 0xb3, 0x1, 0xe0,
|
||||||
|
0x0, 0xf0, 0xa, 0x92, 0x0, 0xb3, 0x24, 0xe0,
|
||||||
|
0x0, 0x80, 0x2, 0x60, 0x0, 0xb2, 0x1b, 0x90,
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
|
||||||
/* U+7EC6 "细" */
|
/* U+7EC6 "细" */
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0, 0x99, 0x0, 0x30, 0x0, 0x0, 0x51, 0x0,
|
0x0, 0x99, 0x0, 0x30, 0x0, 0x0, 0x51, 0x0,
|
||||||
|
@ -886,6 +1026,24 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0x81, 0x37, 0x79, 0x87, 0x77, 0x77, 0x79, 0x8a,
|
0x81, 0x37, 0x79, 0x87, 0x77, 0x77, 0x79, 0x8a,
|
||||||
0x70,
|
0x70,
|
||||||
|
|
||||||
|
/* U+8BA4 "认" */
|
||||||
|
0x0, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x6a, 0x0, 0x0, 0xf, 0x40, 0x0, 0x0,
|
||||||
|
0x0, 0xa, 0x90, 0x0, 0xf, 0x10, 0x0, 0x0,
|
||||||
|
0x0, 0x2, 0x60, 0x0, 0xf, 0x10, 0x0, 0x0,
|
||||||
|
0x0, 0x5, 0x0, 0x0, 0xf, 0x30, 0x0, 0x0,
|
||||||
|
0x27, 0x8f, 0x20, 0x0, 0x1f, 0x50, 0x0, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x0, 0x3d, 0x70, 0x0, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x0, 0x5a, 0x90, 0x0, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x0, 0x87, 0x91, 0x0, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x0, 0xc2, 0x47, 0x0, 0x0,
|
||||||
|
0x0, 0x1e, 0x4, 0x32, 0xc0, 0xe, 0x10, 0x0,
|
||||||
|
0x0, 0x1e, 0x66, 0xa, 0x30, 0x8, 0xa0, 0x0,
|
||||||
|
0x0, 0x3f, 0x90, 0x48, 0x0, 0x1, 0xe7, 0x0,
|
||||||
|
0x0, 0x7b, 0x2, 0xa0, 0x0, 0x0, 0x6f, 0x80,
|
||||||
|
0x0, 0x1, 0x38, 0x0, 0x0, 0x0, 0x7, 0xd2,
|
||||||
|
0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
|
||||||
/* U+8BBE "设" */
|
/* U+8BBE "设" */
|
||||||
0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0, 0xb, 0x60, 0x0, 0xa8, 0x77, 0x8d, 0x20,
|
0x0, 0xb, 0x60, 0x0, 0xa8, 0x77, 0x8d, 0x20,
|
||||||
|
@ -922,6 +1080,24 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||||
0x0, 0x5b, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
|
0x0, 0x5b, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
|
||||||
0x0, 0x0, 0x0, 0x0, 0x1, 0xd0, 0x0, 0x0,
|
0x0, 0x0, 0x0, 0x0, 0x1, 0xd0, 0x0, 0x0,
|
||||||
|
|
||||||
|
/* U+8FD4 "返" */
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x2, 0x90, 0x0, 0x0, 0x0, 0x37, 0xcf, 0x50,
|
||||||
|
0x0, 0x7c, 0x0, 0x2c, 0x78, 0x86, 0x31, 0x0,
|
||||||
|
0x0, 0xe, 0x40, 0x2d, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
0x0, 0x3, 0x10, 0x2d, 0x0, 0x0, 0x16, 0x0,
|
||||||
|
0x0, 0x19, 0x0, 0x3e, 0x77, 0x77, 0xbe, 0x20,
|
||||||
|
0x27, 0x8f, 0x40, 0x4c, 0x10, 0x0, 0xc7, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x6a, 0x38, 0x13, 0xf1, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0x77, 0x2, 0xcd, 0x70, 0x0,
|
||||||
|
0x0, 0x1e, 0x0, 0xb2, 0x0, 0x7f, 0x90, 0x0,
|
||||||
|
0x0, 0x1e, 0x1, 0xa0, 0x5, 0xb2, 0xe9, 0x0,
|
||||||
|
0x0, 0x1e, 0x7, 0x10, 0x69, 0x0, 0x2f, 0x30,
|
||||||
|
0x0, 0x88, 0x93, 0x27, 0x20, 0x0, 0x6, 0x50,
|
||||||
|
0x1b, 0xa0, 0x2c, 0x95, 0x21, 0x11, 0x22, 0x21,
|
||||||
|
0x1c, 0x0, 0x0, 0x5a, 0xdd, 0xee, 0xee, 0xd1,
|
||||||
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
|
|
||||||
/* U+F001 "" */
|
/* U+F001 "" */
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xdc,
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xdc,
|
||||||
|
@ -1966,70 +2142,80 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
|
||||||
{.bitmap_index = 4708, .adv_w = 81, .box_w = 1, .box_h = 19, .ofs_x = 2, .ofs_y = -4},
|
{.bitmap_index = 4708, .adv_w = 81, .box_w = 1, .box_h = 19, .ofs_x = 2, .ofs_y = -4},
|
||||||
{.bitmap_index = 4718, .adv_w = 96, .box_w = 6, .box_h = 16, .ofs_x = 0, .ofs_y = -3},
|
{.bitmap_index = 4718, .adv_w = 96, .box_w = 6, .box_h = 16, .ofs_x = 0, .ofs_y = -3},
|
||||||
{.bitmap_index = 4766, .adv_w = 148, .box_w = 9, .box_h = 3, .ofs_x = 0, .ofs_y = 5},
|
{.bitmap_index = 4766, .adv_w = 148, .box_w = 9, .box_h = 3, .ofs_x = 0, .ofs_y = 5},
|
||||||
{.bitmap_index = 4780, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4780, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 4893, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 4900, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5006, .adv_w = 256, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5028, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 5142, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 5148, .adv_w = 256, .box_w = 14, .box_h = 15, .ofs_x = 1, .ofs_y = -1},
|
||||||
{.bitmap_index = 5262, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5253, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5398, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5381, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5494, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 5509, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5606, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5637, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 5702, .adv_w = 176, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 5765, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 5768, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5878, .adv_w = 256, .box_w = 15, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 5896, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 5991, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6024, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6119, .adv_w = 256, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6150, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6255, .adv_w = 256, .box_w = 16, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6278, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 6375, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6386, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6503, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6514, .adv_w = 128, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6639, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 6570, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 6735, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 6654, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 6847, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 6798, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 6943, .adv_w = 176, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 6894, .adv_w = 176, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 7009, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 6982, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2},
|
{.bitmap_index = 7137, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7062, .adv_w = 224, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = -3},
|
{.bitmap_index = 7265, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7188, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7391, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7293, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7519, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 7391, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2},
|
{.bitmap_index = 7627, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7471, .adv_w = 224, .box_w = 16, .box_h = 14, .ofs_x = -1, .ofs_y = -1},
|
{.bitmap_index = 7755, .adv_w = 128, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7583, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7811, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 7653, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 7895, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7723, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8039, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 7821, .adv_w = 224, .box_w = 14, .box_h = 4, .ofs_x = 0, .ofs_y = 4},
|
{.bitmap_index = 8135, .adv_w = 176, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 7849, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 8223, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2},
|
||||||
{.bitmap_index = 7957, .adv_w = 320, .box_w = 20, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8303, .adv_w = 224, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = -3},
|
||||||
{.bitmap_index = 8117, .adv_w = 288, .box_w = 20, .box_h = 16, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 8429, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8277, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8534, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8405, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 8632, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2},
|
||||||
{.bitmap_index = 8475, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 8712, .adv_w = 224, .box_w = 16, .box_h = 14, .ofs_x = -1, .ofs_y = -1},
|
||||||
{.bitmap_index = 8545, .adv_w = 320, .box_w = 20, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 8824, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8685, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 8894, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8781, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 8964, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 8909, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 9062, .adv_w = 224, .box_w = 14, .box_h = 4, .ofs_x = 0, .ofs_y = 4},
|
||||||
{.bitmap_index = 9054, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 9090, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9159, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 9198, .adv_w = 320, .box_w = 20, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 9271, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 9358, .adv_w = 288, .box_w = 20, .box_h = 16, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 9369, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 9518, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 9467, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 9646, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
||||||
{.bitmap_index = 9563, .adv_w = 160, .box_w = 12, .box_h = 16, .ofs_x = -1, .ofs_y = -2},
|
{.bitmap_index = 9716, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
||||||
{.bitmap_index = 9659, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 9786, .adv_w = 320, .box_w = 20, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 9771, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 9926, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 9883, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 10022, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 9991, .adv_w = 256, .box_w = 18, .box_h = 18, .ofs_x = -1, .ofs_y = -3},
|
{.bitmap_index = 10150, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 10153, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 10295, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 10249, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 10400, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 10399, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 10512, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 10499, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 10610, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 10599, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 10708, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 10699, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 10804, .adv_w = 160, .box_w = 12, .box_h = 16, .ofs_x = -1, .ofs_y = -2},
|
||||||
{.bitmap_index = 10799, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
{.bitmap_index = 10900, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 10899, .adv_w = 320, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
{.bitmap_index = 11012, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 11046, .adv_w = 224, .box_w = 12, .box_h = 16, .ofs_x = 1, .ofs_y = -2},
|
{.bitmap_index = 11124, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
{.bitmap_index = 11142, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 11232, .adv_w = 256, .box_w = 18, .box_h = 18, .ofs_x = -1, .ofs_y = -3},
|
||||||
{.bitmap_index = 11254, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -3},
|
{.bitmap_index = 11394, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
{.bitmap_index = 11399, .adv_w = 320, .box_w = 20, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
{.bitmap_index = 11490, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
|
||||||
{.bitmap_index = 11519, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
{.bitmap_index = 11640, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
||||||
{.bitmap_index = 11615, .adv_w = 258, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 1}
|
{.bitmap_index = 11740, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
||||||
|
{.bitmap_index = 11840, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
||||||
|
{.bitmap_index = 11940, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
||||||
|
{.bitmap_index = 12040, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
|
||||||
|
{.bitmap_index = 12140, .adv_w = 320, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
|
||||||
|
{.bitmap_index = 12287, .adv_w = 224, .box_w = 12, .box_h = 16, .ofs_x = 1, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 12383, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 12495, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -3},
|
||||||
|
{.bitmap_index = 12640, .adv_w = 320, .box_w = 20, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
|
||||||
|
{.bitmap_index = 12760, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
|
||||||
|
{.bitmap_index = 12856, .adv_w = 258, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 1}
|
||||||
};
|
};
|
||||||
|
|
||||||
/*---------------------
|
/*---------------------
|
||||||
|
@ -2037,14 +2223,16 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
|
||||||
*--------------------*/
|
*--------------------*/
|
||||||
|
|
||||||
static const uint16_t unicode_list_2[] = {
|
static const uint16_t unicode_list_2[] = {
|
||||||
0x0, 0xa8, 0xcf8, 0xd20, 0x713b, 0x7142, 0x7145, 0x7146,
|
0x0, 0x475, 0x4d9, 0x791, 0x9c0, 0x1623, 0x16e2, 0x2921,
|
||||||
0x7147, 0x714b, 0x714d, 0x714f, 0x7153, 0x7156, 0x715b, 0x7160,
|
0x2f79, 0x3021, 0x3c57, 0x3c71, 0x3c99, 0x4087, 0xa0b4, 0xa0bb,
|
||||||
0x7161, 0x7162, 0x7178, 0x717d, 0x7182, 0x7185, 0x7186, 0x7187,
|
0xa0be, 0xa0bf, 0xa0c0, 0xa0c4, 0xa0c6, 0xa0c8, 0xa0cc, 0xa0cf,
|
||||||
0x718b, 0x718c, 0x718d, 0x718e, 0x71a1, 0x71a2, 0x71a8, 0x71aa,
|
0xa0d4, 0xa0d9, 0xa0da, 0xa0db, 0xa0f1, 0xa0f6, 0xa0fb, 0xa0fe,
|
||||||
0x71ab, 0x71ae, 0x71b1, 0x71b2, 0x71b3, 0x71b5, 0x71cd, 0x71cf,
|
0xa0ff, 0xa100, 0xa104, 0xa105, 0xa106, 0xa107, 0xa11a, 0xa11b,
|
||||||
0x71fe, 0x71ff, 0x7201, 0x7203, 0x721a, 0x7221, 0x7224, 0x722d,
|
0xa121, 0xa123, 0xa124, 0xa127, 0xa12a, 0xa12b, 0xa12c, 0xa12e,
|
||||||
0x7256, 0x725e, 0x7295, 0x7325, 0x737a, 0x737b, 0x737c, 0x737d,
|
0xa146, 0xa148, 0xa177, 0xa178, 0xa17a, 0xa17c, 0xa193, 0xa19a,
|
||||||
0x737e, 0x73c1, 0x73cd, 0x7427, 0x743e, 0x7694, 0x78fc, 0x79dc
|
0xa19d, 0xa1a6, 0xa1cf, 0xa1d7, 0xa20e, 0xa29e, 0xa2f3, 0xa2f4,
|
||||||
|
0xa2f5, 0xa2f6, 0xa2f7, 0xa33a, 0xa346, 0xa3a0, 0xa3b7, 0xa60d,
|
||||||
|
0xa875, 0xa955
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Collect the unicode lists and glyph_id offsets*/
|
/*Collect the unicode lists and glyph_id offsets*/
|
||||||
|
@ -2059,8 +2247,8 @@ static const lv_font_fmt_txt_cmap_t cmaps[] =
|
||||||
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
|
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.range_start = 32454, .range_length = 31197, .glyph_id_start = 95,
|
.range_start = 20301, .range_length = 43350, .glyph_id_start = 95,
|
||||||
.unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 64, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
|
.unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 74, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2091,7 +2279,9 @@ static const uint8_t kern_left_class_mapping[] =
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Map glyph_ids to kern right classes*/
|
/*Map glyph_ids to kern right classes*/
|
||||||
|
@ -2116,7 +2306,9 @@ static const uint8_t kern_right_class_mapping[] =
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
|
0
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Kern values between classes*/
|
/*Kern values between classes*/
|
||||||
|
|
|
@ -30,10 +30,10 @@ void setup_scr_screen_hidden(lv_ui *ui)
|
||||||
|
|
||||||
//Write codes screen_hidden_label_1
|
//Write codes screen_hidden_label_1
|
||||||
ui->screen_hidden_label_1 = lv_label_create(ui->screen_hidden);
|
ui->screen_hidden_label_1 = lv_label_create(ui->screen_hidden);
|
||||||
lv_label_set_text(ui->screen_hidden_label_1, "照明");
|
lv_label_set_text(ui->screen_hidden_label_1, "照明 背景颜色 明 暗 参数 复位 保存\n中 完成");
|
||||||
lv_label_set_long_mode(ui->screen_hidden_label_1, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(ui->screen_hidden_label_1, LV_LABEL_LONG_WRAP);
|
||||||
lv_obj_set_pos(ui->screen_hidden_label_1, 13, 14);
|
lv_obj_set_pos(ui->screen_hidden_label_1, 13, 14);
|
||||||
lv_obj_set_size(ui->screen_hidden_label_1, 100, 32);
|
lv_obj_set_size(ui->screen_hidden_label_1, 292, 167);
|
||||||
|
|
||||||
//Write style for screen_hidden_label_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_hidden_label_1, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
lv_obj_set_style_border_width(ui->screen_hidden_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_border_width(ui->screen_hidden_label_1, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
|
@ -58,7 +58,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
|
|
||||||
//Write codes screen_setting_label_s0
|
//Write codes screen_setting_label_s0
|
||||||
ui->screen_setting_label_s0 = lv_label_create(ui->screen_setting);
|
ui->screen_setting_label_s0 = lv_label_create(ui->screen_setting);
|
||||||
lv_label_set_text(ui->screen_setting_label_s0, "曲线显示");
|
lv_label_set_text(ui->screen_setting_label_s0, "数值范围");
|
||||||
lv_label_set_long_mode(ui->screen_setting_label_s0, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(ui->screen_setting_label_s0, LV_LABEL_LONG_WRAP);
|
||||||
lv_obj_set_pos(ui->screen_setting_label_s0, 0, 40);
|
lv_obj_set_pos(ui->screen_setting_label_s0, 0, 40);
|
||||||
lv_obj_set_size(ui->screen_setting_label_s0, 80, 50);
|
lv_obj_set_size(ui->screen_setting_label_s0, 80, 50);
|
||||||
|
@ -322,7 +322,7 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
ui->screen_setting_label_05 = lv_label_create(ui->screen_setting);
|
ui->screen_setting_label_05 = lv_label_create(ui->screen_setting);
|
||||||
lv_label_set_text(ui->screen_setting_label_05, "0");
|
lv_label_set_text(ui->screen_setting_label_05, "0");
|
||||||
lv_label_set_long_mode(ui->screen_setting_label_05, LV_LABEL_LONG_DOT);
|
lv_label_set_long_mode(ui->screen_setting_label_05, LV_LABEL_LONG_DOT);
|
||||||
lv_obj_set_pos(ui->screen_setting_label_05, 280, 40);
|
lv_obj_set_pos(ui->screen_setting_label_05, 280, 39);
|
||||||
lv_obj_set_size(ui->screen_setting_label_05, 35, 25);
|
lv_obj_set_size(ui->screen_setting_label_05, 35, 25);
|
||||||
|
|
||||||
//Write style for screen_setting_label_05, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
//Write style for screen_setting_label_05, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
@ -1068,6 +1068,107 @@ void setup_scr_screen_setting(lv_ui *ui)
|
||||||
lv_obj_set_style_pad_left(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_pad_left(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
lv_obj_set_style_shadow_width(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_55, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_cont_window
|
||||||
|
ui->screen_setting_cont_window = lv_obj_create(ui->screen_setting);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_cont_window, 100, 80);
|
||||||
|
lv_obj_set_size(ui->screen_setting_cont_window, 200, 120);
|
||||||
|
lv_obj_set_scrollbar_mode(ui->screen_setting_cont_window, LV_SCROLLBAR_MODE_OFF);
|
||||||
|
lv_obj_add_flag(ui->screen_setting_cont_window, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
|
||||||
|
//Write style for screen_setting_cont_window, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_cont_window, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_opa(ui->screen_setting_cont_window, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_color(ui->screen_setting_cont_window, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_side(ui->screen_setting_cont_window, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_cont_window, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_cont_window, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_cont_window, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_cont_window, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_cont_window, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_cont_window, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_cont_window, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_cont_window, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_cont_window, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_back
|
||||||
|
ui->screen_setting_label_back = lv_label_create(ui->screen_setting_cont_window);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_back, "返回");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_back, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_back, 120, 72);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_back, 44, 24);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_back, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_back, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_opa(ui->screen_setting_label_back, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_color(ui->screen_setting_label_back, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_side(ui->screen_setting_label_back, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_back, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_back, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_back, &lv_font_SourceHanSerifSC_Regular_16, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_back, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_back, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_back, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_back, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_back, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_back, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_back, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_back, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_back, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_back, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_back, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_back, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_ok
|
||||||
|
ui->screen_setting_label_ok = lv_label_create(ui->screen_setting_cont_window);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_ok, "确认");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_ok, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_ok, 36, 72);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_ok, 44, 24);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_ok, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_ok, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_opa(ui->screen_setting_label_ok, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_color(ui->screen_setting_label_ok, lv_color_hex(0x2195f6), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_border_side(ui->screen_setting_label_ok, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_ok, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_ok, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_ok, &lv_font_SourceHanSerifSC_Regular_16, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_ok, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_ok, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_ok, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_ok, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_ok, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_color(ui->screen_setting_label_ok, lv_color_hex(0x629aff), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_grad_dir(ui->screen_setting_label_ok, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_ok, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_ok, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_ok, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_ok, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_ok, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
|
//Write codes screen_setting_label_question
|
||||||
|
ui->screen_setting_label_question = lv_label_create(ui->screen_setting_cont_window);
|
||||||
|
lv_label_set_text(ui->screen_setting_label_question, "是否参数复位");
|
||||||
|
lv_label_set_long_mode(ui->screen_setting_label_question, LV_LABEL_LONG_WRAP);
|
||||||
|
lv_obj_set_pos(ui->screen_setting_label_question, 25, 32);
|
||||||
|
lv_obj_set_size(ui->screen_setting_label_question, 150, 16);
|
||||||
|
|
||||||
|
//Write style for screen_setting_label_question, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
|
||||||
|
lv_obj_set_style_border_width(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_radius(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_color(ui->screen_setting_label_question, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_font(ui->screen_setting_label_question, &lv_font_SourceHanSerifSC_Regular_16, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_opa(ui->screen_setting_label_question, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_letter_space(ui->screen_setting_label_question, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_line_space(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_text_align(ui->screen_setting_label_question, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_bg_opa(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_top(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_right(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_bottom(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_pad_left(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
lv_obj_set_style_shadow_width(ui->screen_setting_label_question, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
|
||||||
|
|
||||||
//The custom code of screen_setting.
|
//The custom code of screen_setting.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -275,7 +275,7 @@
|
||||||
<DebugFlag>
|
<DebugFlag>
|
||||||
<trace>0</trace>
|
<trace>0</trace>
|
||||||
<periodic>1</periodic>
|
<periodic>1</periodic>
|
||||||
<aLwin>0</aLwin>
|
<aLwin>1</aLwin>
|
||||||
<aCover>0</aCover>
|
<aCover>0</aCover>
|
||||||
<aSer1>0</aSer1>
|
<aSer1>0</aSer1>
|
||||||
<aSer2>0</aSer2>
|
<aSer2>0</aSer2>
|
||||||
|
@ -3918,270 +3918,6 @@
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\_logo_alpha_141x60.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>_logo_alpha_141x60.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>290</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\_triangle_alpha_14x8.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>_triangle_alpha_14x8.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>291</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\_W_MOK_dot_alpha_8x30.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>_W_MOK_dot_alpha_8x30.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>292</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_0.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_0.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>293</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_1.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_1.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>294</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_2.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_2.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>295</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_3.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_3.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>296</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_4.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_4.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>297</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_5.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_5.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>298</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_6.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_6.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>299</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_7.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_7.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>300</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_8.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_8.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>301</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_9.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_9.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>302</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_null.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_null.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>303</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_signW_MOK_minus.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_signW_MOK_minus.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>304</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_signW_MOK_plus.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_ani_in_signW_MOK_plus.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>305</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt0.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_animimg_batterybt0.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>306</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt20.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_animimg_batterybt20.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>307</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt40.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_animimg_batterybt40.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>308</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt60.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_animimg_batterybt60.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>309</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt80.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_animimg_batterybt80.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>310</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt100.c</PathWithFileName>
|
|
||||||
<FilenameWithoutPath>screen_main_animimg_batterybt100.c</FilenameWithoutPath>
|
|
||||||
<RteFlg>0</RteFlg>
|
|
||||||
<bShared>0</bShared>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<GroupNumber>17</GroupNumber>
|
|
||||||
<FileNumber>311</FileNumber>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<tvExp>0</tvExp>
|
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
|
||||||
<bDave2>0</bDave2>
|
|
||||||
<PathWithFileName>..\LVGL\myGUI\generated\guider_fonts\lv_font_SourceHanSerifSC_Regular_12.c</PathWithFileName>
|
<PathWithFileName>..\LVGL\myGUI\generated\guider_fonts\lv_font_SourceHanSerifSC_Regular_12.c</PathWithFileName>
|
||||||
<FilenameWithoutPath>lv_font_SourceHanSerifSC_Regular_12.c</FilenameWithoutPath>
|
<FilenameWithoutPath>lv_font_SourceHanSerifSC_Regular_12.c</FilenameWithoutPath>
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
|
@ -4189,7 +3925,7 @@
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<GroupNumber>17</GroupNumber>
|
<GroupNumber>17</GroupNumber>
|
||||||
<FileNumber>312</FileNumber>
|
<FileNumber>290</FileNumber>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
@ -4201,7 +3937,7 @@
|
||||||
</File>
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<GroupNumber>17</GroupNumber>
|
<GroupNumber>17</GroupNumber>
|
||||||
<FileNumber>313</FileNumber>
|
<FileNumber>291</FileNumber>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<tvExp>0</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
@ -4211,6 +3947,270 @@
|
||||||
<RteFlg>0</RteFlg>
|
<RteFlg>0</RteFlg>
|
||||||
<bShared>0</bShared>
|
<bShared>0</bShared>
|
||||||
</File>
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>292</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\_logo_alpha_141x60.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>_logo_alpha_141x60.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>293</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\_triangle_alpha_14x8.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>_triangle_alpha_14x8.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>294</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\_W_MOK_dot_alpha_8x30.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>_W_MOK_dot_alpha_8x30.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>295</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_0.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_0.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>296</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_1.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_1.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>297</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_2.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_2.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>298</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_3.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_3.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>299</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_4.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_4.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>300</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_5.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_5.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>301</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_6.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_6.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>302</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_7.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_7.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>303</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_8.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_8.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>304</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_9.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_9.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>305</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_6W_MOK_null.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_6W_MOK_null.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>306</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_signW_MOK_minus.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_signW_MOK_minus.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>307</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_ani_in_signW_MOK_plus.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_ani_in_signW_MOK_plus.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>308</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt0.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_animimg_batterybt0.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>309</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt20.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_animimg_batterybt20.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>310</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt40.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_animimg_batterybt40.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>311</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt60.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_animimg_batterybt60.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>312</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt80.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_animimg_batterybt80.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<GroupNumber>17</GroupNumber>
|
||||||
|
<FileNumber>313</FileNumber>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<tvExp>0</tvExp>
|
||||||
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
|
<bDave2>0</bDave2>
|
||||||
|
<PathWithFileName>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt100.c</PathWithFileName>
|
||||||
|
<FilenameWithoutPath>screen_main_animimg_batterybt100.c</FilenameWithoutPath>
|
||||||
|
<RteFlg>0</RteFlg>
|
||||||
|
<bShared>0</bShared>
|
||||||
|
</File>
|
||||||
</Group>
|
</Group>
|
||||||
|
|
||||||
<Group>
|
<Group>
|
||||||
|
|
|
@ -338,7 +338,7 @@
|
||||||
<v6WtE>0</v6WtE>
|
<v6WtE>0</v6WtE>
|
||||||
<v6Rtti>0</v6Rtti>
|
<v6Rtti>0</v6Rtti>
|
||||||
<VariousControls>
|
<VariousControls>
|
||||||
<MiscControls>--no-multibyte-chars --locale=english</MiscControls>
|
<MiscControls>--locale=english</MiscControls>
|
||||||
<Define>USE_HAL_DRIVER,STM32F407xx</Define>
|
<Define>USE_HAL_DRIVER,STM32F407xx</Define>
|
||||||
<Undefine></Undefine>
|
<Undefine></Undefine>
|
||||||
<IncludePath>../Core/Inc;../Drivers/STM32F4xx_HAL_Driver/Inc;../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy;../Middlewares/Third_Party/FreeRTOS/Source/include;../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS;../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F;../Drivers/CMSIS/Device/ST/STM32F4xx/Include;../Drivers/CMSIS/Include;../App/LCD;../App/MODBUS;../Utils/inc;../App/BLE;../App/MUX_SIGNAL;../App/DAC8552;../App/HART;../App/RN7302;../App/ADS1220;../App/TM1650;../App/DAC7811;../App/SIG24130;../LVGL;../LVGL/src;../LVGL/examples/porting;../LVGL/myGUI/generated;../LVGL/myGUI/custom;../LVGL/myGUI/generated/guider_fonts;../LVGL/myGUI/generated/guider_customer_fonts;../App/APP_WU/Src;../App/APP_WU/Inc;../LVGL/demos/benchmark;../LVGL/demos</IncludePath>
|
<IncludePath>../Core/Inc;../Drivers/STM32F4xx_HAL_Driver/Inc;../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy;../Middlewares/Third_Party/FreeRTOS/Source/include;../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS;../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F;../Drivers/CMSIS/Device/ST/STM32F4xx/Include;../Drivers/CMSIS/Include;../App/LCD;../App/MODBUS;../Utils/inc;../App/BLE;../App/MUX_SIGNAL;../App/DAC8552;../App/HART;../App/RN7302;../App/ADS1220;../App/TM1650;../App/DAC7811;../App/SIG24130;../LVGL;../LVGL/src;../LVGL/examples/porting;../LVGL/myGUI/generated;../LVGL/myGUI/custom;../LVGL/myGUI/generated/guider_fonts;../LVGL/myGUI/generated/guider_customer_fonts;../App/APP_WU/Src;../App/APP_WU/Inc;../LVGL/demos/benchmark;../LVGL/demos</IncludePath>
|
||||||
|
@ -2568,6 +2568,21 @@
|
||||||
<FileType>5</FileType>
|
<FileType>5</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\guider_customer_fonts\guider_customer_fonts.h</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\guider_customer_fonts\guider_customer_fonts.h</FilePath>
|
||||||
</File>
|
</File>
|
||||||
|
<File>
|
||||||
|
<FileName>lv_font_SourceHanSerifSC_Regular_12.c</FileName>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<FilePath>..\LVGL\myGUI\generated\guider_fonts\lv_font_SourceHanSerifSC_Regular_12.c</FilePath>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<FileName>lv_font_SourceHanSerifSC_Regular_14.c</FileName>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<FilePath>..\LVGL\myGUI\generated\guider_fonts\lv_font_SourceHanSerifSC_Regular_14.c</FilePath>
|
||||||
|
</File>
|
||||||
|
<File>
|
||||||
|
<FileName>lv_font_SourceHanSerifSC_Regular_16.c</FileName>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<FilePath>..\LVGL\myGUI\generated\guider_fonts\lv_font_SourceHanSerifSC_Regular_16.c</FilePath>
|
||||||
|
</File>
|
||||||
<File>
|
<File>
|
||||||
<FileName>_logo_alpha_141x60.c</FileName>
|
<FileName>_logo_alpha_141x60.c</FileName>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
|
@ -2678,21 +2693,6 @@
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt100.c</FilePath>
|
<FilePath>..\LVGL\myGUI\generated\images\screen_main_animimg_batterybt100.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
<File>
|
|
||||||
<FileName>lv_font_SourceHanSerifSC_Regular_12.c</FileName>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<FilePath>..\LVGL\myGUI\generated\guider_fonts\lv_font_SourceHanSerifSC_Regular_12.c</FilePath>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<FileName>lv_font_SourceHanSerifSC_Regular_14.c</FileName>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<FilePath>..\LVGL\myGUI\generated\guider_fonts\lv_font_SourceHanSerifSC_Regular_14.c</FilePath>
|
|
||||||
</File>
|
|
||||||
<File>
|
|
||||||
<FileName>lv_font_SourceHanSerifSC_Regular_16.c</FileName>
|
|
||||||
<FileType>1</FileType>
|
|
||||||
<FilePath>..\LVGL\myGUI\generated\guider_fonts\lv_font_SourceHanSerifSC_Regular_16.c</FilePath>
|
|
||||||
</File>
|
|
||||||
</Files>
|
</Files>
|
||||||
</Group>
|
</Group>
|
||||||
<Group>
|
<Group>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue