pref: 更换显示屏文字和背景颜色,使其更符合视觉传达的清晰度要求

fix: 修正page_menu中错误调用114清屏函数的问题
fix: 删除page_rtcam中page_event_press事件的错误响应
This commit is contained in:
2024-01-04 22:43:15 +08:00
parent 7efb0ee985
commit 8fc8049eb8
3 changed files with 3 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ static void Print_Menu_p(void);
*/
static void Setup()
{
ips114_clear();
ips200_clear();
Print_Menu_p();
Print_Curser(Curser, Curser_Last);
}

View File

@@ -62,9 +62,6 @@ static void Event(page_event event)
} else if (page_event_backward == event) {
Curser++; // 光标下移
} else if (page_event_press == event) {
if (page_max > Curser && page_menu < Curser) {
Page_Shift(Curser); // 切换到光标选中的页面
}
}
if (Curser < LINE_HEAD) {