blob: e80a6eb0681f064d7cb2e5c3f5fd7d0ea5ee51fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* (C) Copyright 2012 Samsung Electronics
* Donghwa Lee <dh09.lee@samsung.com>
*/
#ifndef _LIBTIZEN_H_
#define _LIBTIZEN_H_
#define HD_RESOLUTION 0
#ifdef CONFIG_LCD
void get_tizen_logo_info(vidinfo_t *vid);
void draw_thor_progress(unsigned long long int total_file_size, unsigned long long int downloaded_file_size);
void draw_thor_screen(void);
void draw_thor_connected(void);
void draw_thor_fail_screen(void);
void draw_thor_cable_info(void);
#endif
/* Interactive charger */
void draw_battery_screen(void);
void draw_charge_screen(void);
void clean_charge_screen(void);
void draw_charge_animation(void);
void draw_battery_state(unsigned int soc);
void draw_connect_charger_animation(void);
#endif /* _LIBTIZEN_H_ */
|