2016-05-11 19:05:08 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) Pavol Rusnak, SatoshiLabs
|
|
|
|
*
|
2016-05-28 12:37:32 +00:00
|
|
|
* Licensed under TREZOR License
|
|
|
|
* see LICENSE file for details
|
2016-05-11 19:05:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DISPLAY_H__
|
|
|
|
#define __DISPLAY_H__
|
|
|
|
|
2016-10-03 14:17:49 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2017-09-07 20:19:27 +00:00
|
|
|
// ILI9341V and ST7789V drivers both support 240px x 320px display resolution
|
|
|
|
#define MAX_DISPLAY_RESX 240
|
|
|
|
#define MAX_DISPLAY_RESY 320
|
|
|
|
// X and Y display resolution used
|
2016-09-24 14:53:43 +00:00
|
|
|
#define DISPLAY_RESX 240
|
|
|
|
#define DISPLAY_RESY 240
|
2016-05-11 19:05:08 +00:00
|
|
|
|
2017-10-01 18:29:23 +00:00
|
|
|
#define FONT_BPP 2
|
|
|
|
|
2017-04-28 13:54:54 +00:00
|
|
|
#ifndef TREZOR_FONT_MONO_DISABLE
|
2016-09-28 16:15:06 +00:00
|
|
|
#define FONT_MONO 0
|
2017-04-28 13:54:54 +00:00
|
|
|
#endif
|
|
|
|
#ifndef TREZOR_FONT_NORMAL_DISABLE
|
2016-09-28 16:15:06 +00:00
|
|
|
#define FONT_NORMAL 1
|
2017-04-28 13:54:54 +00:00
|
|
|
#endif
|
|
|
|
#ifndef TREZOR_FONT_BOLD_DISABLE
|
2016-09-28 16:15:06 +00:00
|
|
|
#define FONT_BOLD 2
|
2017-04-28 13:54:54 +00:00
|
|
|
#endif
|
2016-09-28 16:15:06 +00:00
|
|
|
|
2017-09-04 20:15:30 +00:00
|
|
|
#define AVATAR_IMAGE_SIZE 144
|
2016-10-10 12:38:11 +00:00
|
|
|
#define LOADER_ICON_SIZE 64
|
|
|
|
|
2017-04-28 15:51:49 +00:00
|
|
|
#define RGB16(R, G, B) ((R & 0xF8) << 8) | ((G & 0xFC) << 3) | ((B & 0xF8) >> 3)
|
|
|
|
|
|
|
|
#define COLOR_WHITE RGB16(255, 255, 255)
|
|
|
|
#define COLOR_GRAY128 RGB16(127, 127, 127)
|
|
|
|
#define COLOR_GRAY64 RGB16(63, 63, 63)
|
|
|
|
#define COLOR_BLACK RGB16(0, 0, 0)
|
|
|
|
#define COLOR_RED128 RGB16(127, 0, 0)
|
|
|
|
#define COLOR_GREEN128 RGB16(0, 127, 0)
|
|
|
|
#define COLOR_BLUE128 RGB16(0, 0, 127)
|
|
|
|
|
2017-03-17 13:14:00 +00:00
|
|
|
// provided by port
|
|
|
|
|
2017-09-08 01:04:23 +00:00
|
|
|
void display_pwm_init(void);
|
2017-03-21 00:41:49 +00:00
|
|
|
int display_init(void);
|
2017-03-17 13:14:00 +00:00
|
|
|
void display_refresh(void);
|
|
|
|
void display_save(const char *filename);
|
|
|
|
|
|
|
|
// provided by common
|
2016-05-11 19:05:08 +00:00
|
|
|
|
2016-09-28 15:00:27 +00:00
|
|
|
void display_clear(void);
|
2016-10-13 15:09:46 +00:00
|
|
|
|
|
|
|
void display_bar(int x, int y, int w, int h, uint16_t c);
|
|
|
|
void display_bar_radius(int x, int y, int w, int h, uint16_t c, uint16_t b, uint8_t r);
|
2017-03-17 13:14:00 +00:00
|
|
|
|
2016-10-13 15:09:46 +00:00
|
|
|
void display_image(int x, int y, int w, int h, const void *data, int datalen);
|
2017-09-04 20:15:30 +00:00
|
|
|
void display_avatar(int x, int y, const void *data, int datalen, uint16_t fgcolor, uint16_t bgcolor);
|
2016-10-13 15:09:46 +00:00
|
|
|
void display_icon(int x, int y, int w, int h, const void *data, int datalen, uint16_t fgcolor, uint16_t bgcolor);
|
2017-03-17 13:14:00 +00:00
|
|
|
|
2017-04-28 17:50:51 +00:00
|
|
|
#ifndef TREZOR_PRINT_DISABLE
|
|
|
|
void display_print_color(uint16_t fgcolor, uint16_t bgcolor);
|
2017-02-15 14:40:50 +00:00
|
|
|
void display_print(const char *text, int textlen);
|
2017-05-02 15:35:39 +00:00
|
|
|
void display_printf(const char *fmt, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
|
2017-04-28 17:50:51 +00:00
|
|
|
#endif
|
2017-03-17 13:14:00 +00:00
|
|
|
|
2016-10-13 15:09:46 +00:00
|
|
|
void display_text(int x, int y, const char *text, int textlen, uint8_t font, uint16_t fgcolor, uint16_t bgcolor);
|
|
|
|
void display_text_center(int x, int y, const char *text, int textlen, uint8_t font, uint16_t fgcolor, uint16_t bgcolor);
|
|
|
|
void display_text_right(int x, int y, const char *text, int textlen, uint8_t font, uint16_t fgcolor, uint16_t bgcolor);
|
|
|
|
int display_text_width(const char *text, int textlen, uint8_t font);
|
|
|
|
|
2017-03-17 13:14:00 +00:00
|
|
|
void display_qrcode(int x, int y, const char *data, int datalen, uint8_t scale);
|
|
|
|
void display_loader(uint16_t progress, int yoffset, uint16_t fgcolor, uint16_t bgcolor, const uint8_t *icon, uint32_t iconlen, uint16_t iconfgcolor);
|
|
|
|
|
|
|
|
int *display_offset(int xy[2]);
|
|
|
|
int display_orientation(int degrees);
|
|
|
|
int display_backlight(int val);
|
|
|
|
|
2016-05-11 19:05:08 +00:00
|
|
|
#endif
|