Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolay Minaylov <nm29719@gmail.com>2021-12-22 23:04:08 +0300
committerGitHub <noreply@github.com>2021-12-22 23:04:08 +0300
commit9e62f08e4d6805e01a08f4def2bf4611d920046c (patch)
tree50bd51265cece455029190e0f517e315175095aa /applications/applications.mk
parent9b62b557b442ab88206b8b44253c1dcbac35c4e3 (diff)
[FL-1958] U2F prototype (#879)
* U2F implementation prototype * U2F data encryption and store, user confirmation request * remove debug prints * fix notification bug in chrome * split u2f_alloc into u2f_init and u2f_alloc * typo fix, furi-hal-trng -> furi-hal-random * rand/srand redefinition * SubGhz: a little bit of Dante. * u2f_data naming fix Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk9
1 files changed, 8 insertions, 1 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index 35069882..c5843fee 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -50,6 +50,7 @@ APP_DISPLAY_TEST = 1
APP_BLE_HID = 1
APP_USB_MOUSE = 1
APP_BAD_USB = 1
+APP_U2F = 1
APP_UART_ECHO = 1
endif
@@ -165,7 +166,13 @@ APP_BAD_USB ?= 0
ifeq ($(APP_BAD_USB), 1)
CFLAGS += -DAPP_BAD_USB
SRV_GUI = 1
-endif
+endif
+
+APP_U2F ?= 0
+ifeq ($(APP_U2F), 1)
+CFLAGS += -DAPP_U2F
+SRV_GUI = 1
+endif
APP_BLE_HID ?=0
ifeq ($(APP_BLE_HID), 1)