2022-10-14 10:43:37 +00:00
|
|
|
#ifndef _BOARD_UNIX_H
|
|
|
|
#define _BOARD_UNIX_H
|
|
|
|
|
2023-03-27 14:44:01 +00:00
|
|
|
#ifdef TREZOR_MODEL_T
|
|
|
|
#define USE_TOUCH 1
|
|
|
|
#define USE_SD_CARD 1
|
|
|
|
#define USE_SBU 1
|
2023-02-09 22:56:03 +00:00
|
|
|
#define USE_RGB_COLORS 1
|
2023-03-27 14:44:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TREZOR_MODEL_1
|
|
|
|
#define USE_BUTTON 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TREZOR_MODEL_R
|
|
|
|
#define USE_BUTTON 1
|
|
|
|
#define USE_SBU 1
|
|
|
|
#endif
|
|
|
|
|
2022-10-14 10:43:37 +00:00
|
|
|
#include "display-unix.h"
|
|
|
|
|
2023-04-13 14:38:00 +00:00
|
|
|
#ifdef TREZOR_MODEL_R
|
|
|
|
#define USE_BUTTON 1
|
|
|
|
#elif TREZOR_MODEL_T
|
2023-03-23 14:42:21 +00:00
|
|
|
#define USE_TOUCH 1
|
2023-04-13 14:38:00 +00:00
|
|
|
#endif
|
2023-03-23 14:42:21 +00:00
|
|
|
|
2022-10-14 10:43:37 +00:00
|
|
|
#endif //_BOARD_UNIX_H
|