diff --git a/core/SConscript.unix b/core/SConscript.unix index c2dfe80497..87c1eda95b 100644 --- a/core/SConscript.unix +++ b/core/SConscript.unix @@ -507,6 +507,7 @@ env = Environment(ENV=os.environ, CFLAGS='%s -DCONFIDENTIAL= -DPYOPT=%s -DBITCOI if TREZOR_MODEL in ('T', 'T3T1'): UI_LAYOUT = 'UI_LAYOUT_TT' ui_layout_feature = 'model_tt' +# XXX TODO elif TREZOR_MODEL in ('1', 'R'): UI_LAYOUT = 'UI_LAYOUT_TR' ui_layout_feature = 'model_tr' diff --git a/core/embed/trezorhal/boards/board-unix.h b/core/embed/trezorhal/boards/board-unix.h index c7270c7415..eb0a96db52 100644 --- a/core/embed/trezorhal/boards/board-unix.h +++ b/core/embed/trezorhal/boards/board-unix.h @@ -28,6 +28,14 @@ #define USE_OPTIGA 1 #endif +#ifdef TREZOR_MODEL_T3T1 +#define USE_TOUCH 1 +#define USE_SD_CARD 1 +#define USE_SBU 1 +#define USE_RGB_COLORS 1 +#define USE_BACKLIGHT 1 +#endif + #include "display-unix.h" #endif //_BOARD_UNIX_H