mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-23 07:58:09 +00:00
21 lines
345 B
C
21 lines
345 B
C
/*
|
|
* Copyright (c) Pavol Rusnak, SatoshiLabs
|
|
*
|
|
* Licensed under TREZOR License
|
|
* see LICENSE file for details
|
|
*/
|
|
|
|
#ifndef __OPTIONS_H__
|
|
#define __OPTIONS_H__
|
|
|
|
#define DISPLAY_RESX 240
|
|
#define DISPLAY_RESY 240
|
|
|
|
#define DISPLAY_TOUCH_OFFSET_X 180
|
|
#define DISPLAY_TOUCH_OFFSET_Y 120
|
|
|
|
#define WINDOW_WIDTH 600
|
|
#define WINDOW_HEIGHT 800
|
|
|
|
#endif
|