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:
authorAnna Prosvetova <anna@prosvetova.me>2021-11-12 16:04:35 +0300
committerGitHub <noreply@github.com>2021-11-12 16:04:35 +0300
commit558fa5670bb624c63c03f76f9f434dc7189f2aa9 (patch)
tree0a4f521af9d25fde4258bfd6d0feac5f9f05ee45 /applications/storage
parentb564e8eb3851d976f5e690aaaa13db7c653c7455 (diff)
RPC: Add Virtual Display & Unify log tags (#814)
* RPC: Update protobuf sources * RPC: Add Virtual Display * Unify log tags * RPC: Virtual Display placeholder * Rpc: clear frame buffer callback before confirm. * Firmware: full assert for hal, move fatfs initialization to furi hal. * FuriHal: VCP optimizations, thread safe console. Rpc: adjust buffer sizes. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Diffstat (limited to 'applications/storage')
-rw-r--r--applications/storage/storage-test-app.c2
-rw-r--r--applications/storage/storages/storage-ext.c2
-rw-r--r--applications/storage/storages/storage-int.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/applications/storage/storage-test-app.c b/applications/storage/storage-test-app.c
index 022181a5..1c4e1915 100644
--- a/applications/storage/storage-test-app.c
+++ b/applications/storage/storage-test-app.c
@@ -2,7 +2,7 @@
#include <furi-hal.h>
#include <storage/storage.h>
-#define TAG "storage-test"
+#define TAG "StorageTest"
#define BYTES_COUNT 16
#define TEST_STRING "TestDataStringProvidedByDiceRoll"
#define SEEK_OFFSET_FROM_START 10
diff --git a/applications/storage/storages/storage-ext.c b/applications/storage/storages/storage-ext.c
index a434c2d8..51de7612 100644
--- a/applications/storage/storages/storage-ext.c
+++ b/applications/storage/storages/storage-ext.c
@@ -10,7 +10,7 @@ typedef DIR SDDir;
typedef FILINFO SDFileInfo;
typedef FRESULT SDError;
-#define TAG "storage-ext"
+#define TAG "StorageExt"
#define STORAGE_PATH "/ext"
/********************* Definitions ********************/
diff --git a/applications/storage/storages/storage-int.c b/applications/storage/storages/storage-int.c
index 3eabdec7..69ffe15e 100644
--- a/applications/storage/storages/storage-int.c
+++ b/applications/storage/storages/storage-int.c
@@ -2,7 +2,7 @@
#include <lfs.h>
#include <furi-hal.h>
-#define TAG "storage-int"
+#define TAG "StorageInt"
#define STORAGE_PATH "/int"
typedef struct {