mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
37 lines
488 B
C
37 lines
488 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)
|
|
{
|
|
}
|
|
|
|
void display_set_window(uint16_t x, uint16_t y, uint16_t w, uint16_t h)
|
|
{
|
|
}
|
|
|
|
void display_refresh(void)
|
|
{
|
|
}
|
|
|
|
int display_orientation(int degrees)
|
|
{
|
|
return ORIENTATION;
|
|
}
|
|
|
|
int display_backlight(int val)
|
|
{
|
|
return BACKLIGHT;
|
|
}
|