/* * This file is part of the Trezor project, https://trezor.io/ * * Copyright (c) SatoshiLabs * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that 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 . */ #ifndef _DISPLAY_INTERFACE_H #define _DISPLAY_INTERFACE_H #include #include "common.h" #include TREZOR_BOARD #ifndef PIXELDATA #define PIXELDATA(c) display_pixeldata(c) #endif void display_pixeldata(uint16_t c); #ifndef PIXELDATA_DIRTY #define PIXELDATA_DIRTY() #endif void display_reset_state(); void display_set_window(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1); int display_orientation(int degrees); int display_get_orientation(void); int display_backlight(int val); void display_init(void); void display_reinit(void); void display_sync(void); void display_refresh(void); const char *display_save(const char *prefix); void display_clear_save(void); #endif //_DISPLAY_INTERFACE_H