增加开机画面

This commit is contained in:
wu58430 2023-12-07 17:35:23 +08:00
parent 8d1562d384
commit ecdc504ff8
3 changed files with 43 additions and 43 deletions

2
main.c
View file

@ -140,7 +140,7 @@ void Main(void)
// } // }
// else // else
// { // {
//UI_DisplayWelcome(); UI_DisplayWelcome();
// if (gEeprom.POWER_ON_DISPLAY_MODE != POWER_ON_DISPLAY_MODE_NONE) // if (gEeprom.POWER_ON_DISPLAY_MODE != POWER_ON_DISPLAY_MODE_NONE)

View file

@ -42,44 +42,44 @@
// //
//} //}
//void UI_DisplayWelcome(void) { void UI_DisplayWelcome(void) {
// BACKLIGHT_TurnOn(); BACKLIGHT_TurnOn();
//
// char WelcomeString0[16]={0}; char WelcomeString0[16]={0};
// char WelcomeString1[16]={0}; char WelcomeString1[16]={0};
//
// memset(gStatusLine, 0, sizeof(gStatusLine)); memset(gStatusLine, 0, sizeof(gStatusLine));
// memset(gFrameBuffer, 0, sizeof(gFrameBuffer)); memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
//
//
//
//
//# #
//
// EEPROM_ReadBuffer(0x0EB0, WelcomeString0, 16); EEPROM_ReadBuffer(0x0EB0, WelcomeString0, 16);
// EEPROM_ReadBuffer(0x0EC0, WelcomeString1, 16); EEPROM_ReadBuffer(0x0EC0, WelcomeString1, 16);
//
//
// UI_PrintStringSmall(WelcomeString0, 0, 127, 0); UI_PrintStringSmall(WelcomeString0, 0, 127, 0);
// UI_PrintStringSmall(WelcomeString1, 0, 127, 2); UI_PrintStringSmall(WelcomeString1, 0, 127, 2);
// sprintf(WelcomeString1, "%u.%02uV %u%%", sprintf(WelcomeString1, "%u.%02uV %u%%",
// gBatteryVoltageAverage / 100, gBatteryVoltageAverage / 100,
// gBatteryVoltageAverage % 100, gBatteryVoltageAverage % 100,
// BATTERY_VoltsToPercent(gBatteryVoltageAverage)); BATTERY_VoltsToPercent(gBatteryVoltageAverage));
// UI_PrintStringSmall(WelcomeString1, 0, 127, 4); UI_PrintStringSmall(WelcomeString1, 0, 127, 4);
//
// UI_PrintStringSmall(Version, 0, 127, 6); UI_PrintStringSmall(Version, 0, 127, 6);
//
// ST7565_BlitStatusLine(); // blank status line ST7565_BlitStatusLine(); // blank status line
// ST7565_BlitFullScreen(); ST7565_BlitFullScreen();
// unsigned char i=250; unsigned char i=250;
// while (i--) { while (i--) {
// if (KEYBOARD_Poll() == KEY_EXIT) if (KEYBOARD_Poll() == KEY_EXIT)
// break; break;
// SYSTEM_DelayMs(10); SYSTEM_DelayMs(10);
//
//
// } }
//
//} }
//

View file

@ -18,7 +18,7 @@
#define UI_WELCOME_H #define UI_WELCOME_H
#include "helper/boot.h" #include "helper/boot.h"
//void UI_DisplayReleaseKeys(BOOT_Mode_t BootMode); //void UI_DisplayReleaseKeys(BOOT_Mode_t BootMode);
//void UI_DisplayWelcome(void); void UI_DisplayWelcome(void);
#endif #endif