1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-18 08:09:03 +00:00

fixup! WIP: support BLE in emulator

This commit is contained in:
Martin Milata 2025-03-19 18:23:19 +01:00
parent af768117bc
commit 97f337bae4

View File

@ -58,6 +58,11 @@ def configure(
features_available.append("touch")
defines += [("USE_TOUCH", "1")]
sources += ["embed/io/button/unix/button.c"]
paths += ["embed/io/button/inc"]
features_available.append("button")
defines += [("USE_BUTTON", "1")]
if "ble" in features_wanted:
sources += ["embed/io/ble/unix/ble.c"]
paths += ["embed/io/ble/inc"]