2023-12-07 03:39:09 +00:00
|
|
|
/* Copyright 2023 Dual Tachyon
|
|
|
|
* https://github.com/DualTachyon
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2023-12-22 09:48:18 +00:00
|
|
|
#include "driver/uart.h"
|
2023-12-07 03:39:09 +00:00
|
|
|
#include "chinese.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "driver/keyboard.h"
|
|
|
|
#include "driver/eeprom.h"
|
|
|
|
#include "driver/st7565.h"
|
|
|
|
#include "external/printf/printf.h"
|
|
|
|
#include "helper/battery.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "ui/helper.h"
|
|
|
|
#include "ui/welcome.h"
|
|
|
|
#include "ui/status.h"
|
|
|
|
#include "version.h"
|
|
|
|
#include "driver/system.h"
|
|
|
|
//void UI_DisplayReleaseKeys(BOOT_Mode_t BootMode) {
|
|
|
|
// memset(gStatusLine, 0, sizeof(gStatusLine));
|
|
|
|
// memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
|
|
|
//
|
|
|
|
// if (BootMode == BOOT_MODE_F_LOCK) {
|
|
|
|
// //解锁,全部按键
|
|
|
|
// UI_PrintStringSmall(解锁, 0, 127, 1);
|
|
|
|
// UI_PrintStringSmall(全部按键, 0, 127, 3);
|
|
|
|
// ST7565_BlitStatusLine(); // blank status line
|
|
|
|
// ST7565_BlitFullScreen();
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//}
|
|
|
|
|
2023-12-07 09:35:23 +00:00
|
|
|
void UI_DisplayWelcome(void) {
|
|
|
|
|
2023-12-22 09:48:18 +00:00
|
|
|
char WelcomeString0[19] = {0};
|
|
|
|
char WelcomeString1[19] = {0};
|
2023-12-07 09:35:23 +00:00
|
|
|
|
|
|
|
memset(gStatusLine, 0, sizeof(gStatusLine));
|
|
|
|
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
|
|
|
|
|
|
|
|
2023-12-22 09:48:18 +00:00
|
|
|
#if ENABLE_CHINESE_FULL == 4
|
|
|
|
uint8_t welcome_len[2];
|
|
|
|
EEPROM_ReadBuffer(0x1e31e, welcome_len, 2) ;
|
|
|
|
welcome_len[0]=welcome_len[0]>18?0:welcome_len[0];
|
|
|
|
welcome_len[1]=welcome_len[1]>18?0:welcome_len[1];
|
2023-12-07 09:35:23 +00:00
|
|
|
|
2023-12-22 09:48:18 +00:00
|
|
|
EEPROM_ReadBuffer(0x1e320, WelcomeString0, welcome_len[0]) ;
|
|
|
|
EEPROM_ReadBuffer(0x1e333, WelcomeString1, welcome_len[1]);
|
|
|
|
UI_PrintStringSmall( WelcomeString0, 0, 127, 0);
|
|
|
|
UI_PrintStringSmall( WelcomeString1, 0, 127, 2);
|
|
|
|
#else
|
2023-12-07 09:35:23 +00:00
|
|
|
|
2023-12-20 15:30:42 +00:00
|
|
|
EEPROM_ReadBuffer(0x0EB0, WelcomeString0, 16);
|
|
|
|
EEPROM_ReadBuffer(0x0EC0, WelcomeString1, 16);
|
2023-12-22 09:48:18 +00:00
|
|
|
UI_PrintStringSmall(WelcomeString0, 0, 127, 0);
|
|
|
|
UI_PrintStringSmall(WelcomeString1, 0, 127, 2);
|
2023-12-20 15:20:23 +00:00
|
|
|
#endif
|
2023-12-22 09:48:18 +00:00
|
|
|
sprintf(WelcomeString1, "%u.%02uV %u%%",
|
|
|
|
gBatteryVoltageAverage / 100,
|
|
|
|
gBatteryVoltageAverage % 100,
|
|
|
|
BATTERY_VoltsToPercent(gBatteryVoltageAverage));
|
|
|
|
UI_PrintStringSmall(WelcomeString1, 0, 127, 4);
|
2023-12-09 05:09:33 +00:00
|
|
|
|
2023-12-22 09:48:18 +00:00
|
|
|
UI_PrintStringSmall(Version, 0, 127, 6);
|
2023-12-09 05:09:33 +00:00
|
|
|
|
2023-12-22 09:48:18 +00:00
|
|
|
ST7565_BlitStatusLine(); // blank status line
|
|
|
|
ST7565_BlitFullScreen();
|
2023-12-25 09:18:14 +00:00
|
|
|
BACKLIGHT_TurnOn();
|
2023-12-09 05:09:33 +00:00
|
|
|
|
2023-12-07 09:35:23 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|