/*1* Copyright (c) 2018-2022 CTCaer2*3* This program is free software; you can redistribute it and/or modify it4* under the terms and conditions of the GNU General Public License,5* version 2, as published by the Free Software Foundation.6*7* This program is distributed in the hope it will be useful, but WITHOUT8* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or9* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for10* more details.11*12* You should have received a copy of the GNU General Public License13* along with this program. If not, see <http://www.gnu.org/licenses/>.14*/1516#ifndef _GFX_LOGOS_H_17#define _GFX_LOGOS_H_1819// 21 x 50 @8bpp RGB.20#define BATTERY_EMPTY_WIDTH 2121#define BATTERY_EMPTY_BATT_HEIGHT 3822#define BATTERY_EMPTY_CHRG_HEIGHT 1223#define BATTERY_EMPTY_SIZE 315024#define BATTERY_EMPTY_BLZ_SIZE 74025extern u8 battery_icons_blz[];2627u8 *render_static_bootlogo();28bool render_ticker_logo(u32 boot_wait, u32 backlight);29bool render_ticker(u32 boot_wait, u32 backlight, bool no_ticker);3031#endif323334