mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-15 14:54:40 +00:00
95 lines
3.1 KiB
C
95 lines
3.1 KiB
C
/* 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.
|
|
*/
|
|
#include "driver/uart.h"
|
|
#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();
|
|
// }
|
|
//
|
|
//
|
|
//}
|
|
|
|
void UI_DisplayWelcome(void) {
|
|
|
|
char WelcomeString0[19] = {0};
|
|
char WelcomeString1[19] = {0};
|
|
|
|
memset(gStatusLine, 0, sizeof(gStatusLine));
|
|
UI_DisplayClear();
|
|
ST7565_BlitStatusLine(); // blank status line
|
|
ST7565_BlitFullScreen();
|
|
if (gEeprom.POWER_ON_DISPLAY_MODE == POWER_ON_DISPLAY_MODE_MESSAGE) {
|
|
|
|
#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];
|
|
EEPROM_ReadBuffer(0x1e320, WelcomeString0, welcome_len[0]) ;
|
|
EEPROM_ReadBuffer(0x1e333, WelcomeString1, welcome_len[1]);
|
|
#else
|
|
EEPROM_ReadBuffer(0x0EB0, WelcomeString0, 16);
|
|
EEPROM_ReadBuffer(0x0EC0, WelcomeString1, 16);
|
|
|
|
#endif
|
|
UI_PrintStringSmall( WelcomeString0, 0, 127, 0);
|
|
UI_PrintStringSmall( WelcomeString1, 0, 127, 2);
|
|
sprintf(WelcomeString1, "%u.%02uV %u%%",
|
|
gBatteryVoltageAverage / 100,
|
|
gBatteryVoltageAverage % 100,
|
|
BATTERY_VoltsToPercent(gBatteryVoltageAverage));
|
|
UI_PrintStringSmall(WelcomeString1, 0, 127, 4);
|
|
UI_PrintStringSmall(Version, 0, 127, 6);
|
|
}
|
|
#if ENABLE_CHINESE_FULL == 4
|
|
else if(gEeprom.POWER_ON_DISPLAY_MODE == POWER_ON_DISPLAY_MODE_PIC)
|
|
{
|
|
EEPROM_ReadBuffer( 0x1E350, gStatusLine, 128);
|
|
for (int i = 0; i < 7; ++i) EEPROM_ReadBuffer(0x1E350+128+128*i, &gFrameBuffer[i], 128);
|
|
|
|
|
|
}
|
|
#endif
|
|
|
|
|
|
ST7565_BlitStatusLine(); // blank status line
|
|
ST7565_BlitFullScreen();
|
|
BACKLIGHT_TurnOn();
|
|
|
|
|
|
}
|
|
|