2018-06-18 06:04:45 +00:00
|
|
|
/*
|
2022-10-11 04:49:17 +00:00
|
|
|
* Copyright (c) 2018-2022 CTCaer
|
2018-08-05 11:40:32 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-06-18 06:04:45 +00:00
|
|
|
|
2022-10-11 04:49:17 +00:00
|
|
|
#ifndef _GFX_LOGOS_H_
|
|
|
|
#define _GFX_LOGOS_H_
|
2018-06-18 06:04:45 +00:00
|
|
|
|
2018-08-05 11:40:32 +00:00
|
|
|
// 68 x 192 @8bpp Grayscale RAW.
|
2019-03-07 22:08:39 +00:00
|
|
|
#define X_BOOTLOGO 68
|
|
|
|
#define Y_BOOTLOGO 192
|
|
|
|
#define SZ_BOOTLOGO 13056
|
|
|
|
#define SZ_BOOTLOGO_BLZ 3988
|
2022-10-11 04:49:17 +00:00
|
|
|
extern u8 BOOTLOGO_BLZ[SZ_BOOTLOGO_BLZ];
|
2018-06-18 06:04:45 +00:00
|
|
|
|
2020-04-06 02:54:45 +00:00
|
|
|
// 21 x 50 @8bpp RGB.
|
|
|
|
#define X_BATTERY_EMPTY 21
|
|
|
|
#define Y_BATTERY_EMPTY_BATT 38
|
|
|
|
#define Y_BATTERY_EMPTY_CHRG 12
|
|
|
|
#define SZ_BATTERY_EMPTY 3150
|
|
|
|
#define SZ_BATTERY_EMPTY_BLZ 740
|
2022-10-11 04:49:17 +00:00
|
|
|
extern u8 BATTERY_EMPTY_BLZ[SZ_BATTERY_EMPTY_BLZ];
|
|
|
|
|
|
|
|
u8 *render_static_bootlogo();
|
|
|
|
bool render_ticker_logo(u32 boot_wait, u32 backlight);
|
|
|
|
bool render_ticker(u32 boot_wait, u32 backlight, bool no_ticker);
|
2020-04-06 02:54:45 +00:00
|
|
|
|
2018-06-18 06:04:45 +00:00
|
|
|
#endif
|