mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-22 06:18:07 +00:00
35 lines
477 B
C
35 lines
477 B
C
/*
|
|
* Copyright (c) Pavol Rusnak, SatoshiLabs
|
|
*
|
|
* Licensed under TREZOR License
|
|
* see LICENSE file for details
|
|
*/
|
|
|
|
#define CMD(X) (void)(X);
|
|
#define DATA(X) (void)(X);
|
|
|
|
uint32_t trezorui_poll_event(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void display_init(void)
|
|
{
|
|
}
|
|
|
|
static void display_set_window(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1)
|
|
{
|
|
}
|
|
|
|
void display_refresh(void)
|
|
{
|
|
}
|
|
|
|
static void display_set_orientation(int degrees)
|
|
{
|
|
}
|
|
|
|
static void display_set_backlight(int val)
|
|
{
|
|
}
|