2022-08-16 14:51:10 +00:00
|
|
|
/*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DISPLAY_INTERFACE_H
|
|
|
|
#define _DISPLAY_INTERFACE_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "common.h"
|
2022-10-14 10:43:37 +00:00
|
|
|
#include TREZOR_BOARD
|
2022-08-16 14:51:10 +00:00
|
|
|
|
2022-10-14 10:43:37 +00:00
|
|
|
#ifndef PIXELDATA
|
2022-08-16 14:51:10 +00:00
|
|
|
#define PIXELDATA(c) display_pixeldata(c)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void display_pixeldata(uint16_t c);
|
|
|
|
|
2022-10-14 10:43:37 +00:00
|
|
|
#ifndef PIXELDATA_DIRTY
|
2022-08-16 14:51:10 +00:00
|
|
|
#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);
|
2022-10-14 10:43:37 +00:00
|
|
|
void display_reinit(void);
|
2022-12-13 11:40:02 +00:00
|
|
|
void display_sync(void);
|
2022-08-16 14:51:10 +00:00
|
|
|
void display_refresh(void);
|
|
|
|
const char *display_save(const char *prefix);
|
|
|
|
void display_clear_save(void);
|
|
|
|
|
|
|
|
#endif //_DISPLAY_INTERFACE_H
|