mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
0d733d8e22
[no changelog]
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
def add_font(font_name, font, defines, sources):
|
|
if font is not None:
|
|
defines += [
|
|
'TREZOR_FONT_' + font_name + '_ENABLE=' + font,
|
|
'TREZOR_FONT_' + font_name + '_INCLUDE=\\"' + font.lower() + '.h\\"',
|
|
]
|
|
sourcefile = 'embed/extmod/modtrezorui/fonts/' + font.lower() + '.c'
|
|
if sourcefile not in sources:
|
|
sources.append(sourcefile)
|
|
|
|
|
|
def configure_board(model, env, defines, sources):
|
|
model_r_version = 4
|
|
|
|
if model in ('1',):
|
|
board = 'trezor_1.h'
|
|
display = 'vg-2864ksweg01.c'
|
|
elif model in ('T',):
|
|
board = 'trezor_t.h'
|
|
display = 'st7789v.c'
|
|
elif model in ('R',):
|
|
if model_r_version == 3:
|
|
board = 'trezor_r_v3.h'
|
|
display = "ug-2828tswig01.c"
|
|
else:
|
|
board = 'trezor_r_v4.h'
|
|
display = 'vg-2864ksweg01.c'
|
|
else:
|
|
raise Exception("Unknown model")
|
|
|
|
defines += [f'TREZOR_BOARD=\\"boards/{board}\\"', ]
|
|
sources += [f'embed/trezorhal/displays/{display}', ]
|
|
env.get('ENV')['TREZOR_BOARD'] = board
|