66 lines
1.9 KiB
C
66 lines
1.9 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 <string.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 "bitmaps.h"
|
|
|
|
void UI_DisplayReleaseKeys(void) {
|
|
memset(gStatusLine, 0, sizeof(gStatusLine));
|
|
#if defined(ENABLE_FEAT_F4HWN_CTR) || defined(ENABLE_FEAT_F4HWN_INV)
|
|
ST7565_ContrastAndInv();
|
|
#endif
|
|
UI_DisplayClear();
|
|
|
|
UI_PrintString("RELEASE", 0, 127, 1, 10);
|
|
UI_PrintString("ALL KEYS", 0, 127, 3, 10);
|
|
|
|
ST7565_BlitStatusLine(); // blank status line
|
|
ST7565_BlitFullScreen();
|
|
}
|
|
|
|
void UI_DisplayWelcome(void) {
|
|
|
|
memset(gStatusLine, 0, sizeof(gStatusLine));
|
|
|
|
#if defined(ENABLE_FEAT_F4HWN_CTR) || defined(ENABLE_FEAT_F4HWN_INV)
|
|
ST7565_ContrastAndInv();
|
|
#endif
|
|
UI_DisplayClear();
|
|
ST7565_BlitStatusLine();
|
|
ST7565_BlitFullScreen();
|
|
|
|
|
|
UI_DrawLineBuffer(gFrameBuffer, 0, 31, 127, 31, 1); // Be ware, status zone = 8 lines, the rest = 56 ->total 64
|
|
|
|
for (uint8_t i = 18; i < 110; i++) {
|
|
gFrameBuffer[4][i] ^= 0xFF;
|
|
}
|
|
|
|
//ST7565_BlitStatusLine(); // blank status line : I think it's useless
|
|
ST7565_BlitFullScreen();
|
|
}
|