From 21fa49966fa5e33a2a8b3816d5443220ae26cc20 Mon Sep 17 00:00:00 2001 From: CaoWangrenbo Date: Sat, 6 Jan 2024 20:37:43 +0800 Subject: [PATCH] =?UTF-8?q?pref:=20=E4=BF=AE=E6=94=B9=E9=80=89=E4=B8=AD?= =?UTF-8?q?=E5=8A=A8=E7=94=BB=E6=97=B6=E9=95=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/page/cw_page_ui_widget.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/page/cw_page_ui_widget.c b/app/page/cw_page_ui_widget.c index 2ed8d22..594bf99 100644 --- a/app/page/cw_page_ui_widget.c +++ b/app/page/cw_page_ui_widget.c @@ -10,8 +10,8 @@ */ void Print_Curser(uint8_t Curser_In, uint8_t Curser_Last_In) { - ips200_show_string(0, Curser_Last_In * 18, " "); - ips200_show_string(0, Curser_In * 18, ">"); + // ips200_show_string(0, Curser_Last_In * 18, " "); + // ips200_show_string(0, Curser_In * 18, ">"); for (uint8_t i = 0; i < 160; i++) { ips200_draw_point(10 + i, Curser_Last_In * 18 + 19, IPS200_DEFAULT_BGCOLOR); @@ -19,7 +19,7 @@ void Print_Curser(uint8_t Curser_In, uint8_t Curser_Last_In) } for (uint8_t i = 0; i < 160; i++) { ips200_draw_point(10 + i, Curser_In * 18 + 19, RGB565_WHITE); - system_delay_ms(2); + system_delay_ms(1); } }