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/subghz
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/subghz')
-rw-r--r--applications/subghz/subghz.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/applications/subghz/subghz.c b/applications/subghz/subghz.c
index 23599739..884bd4a3 100644
--- a/applications/subghz/subghz.c
+++ b/applications/subghz/subghz.c
@@ -1,7 +1,4 @@
-/*
-* Give up hope, everyone who enters here!!!
-* Оставь надежду, всяк сюда входящий!!!
-*/
+/* Abandon hope, all ye who enter here. */
#include "subghz_i.h"
#include <lib/toolbox/path.h>
@@ -329,4 +326,4 @@ int32_t subghz_app(void* p) {
subghz_free(subghz);
return 0;
-} \ No newline at end of file
+}