jz4760: use SYSFONT in the hw info debug screen, and restore old font

Change-Id: I0c2df20a8c87f7a5bdf25d59904d32806171a544
This commit is contained in:
Solomon Peachy 2020-08-31 13:40:49 -04:00
parent 56b49b3074
commit a7ebd92ec8
1 changed files with 2 additions and 1 deletions

View File

@ -233,7 +233,7 @@ bool dbg_hw_info(void)
#endif
struct tm *cur_time;
lcd_setfont(FONT_UI);
lcd_setfont(FONT_SYSFIXED);
while(btn ^ BUTTON_POWER)
{
lcd_clear_display();
@ -259,6 +259,7 @@ bool dbg_hw_info(void)
lcd_update();
sleep(HZ/16);
}
lcd_setfont(FONT_UI);
return true;
}
#endif