Skip to content

Commit b31a49a

Browse files
committed
fix hidfiletransfer
1 parent 940c260 commit b31a49a

File tree

5 files changed

+1
-183
lines changed

5 files changed

+1
-183
lines changed

base_pack/nfc_maker/scenes/nfc_maker_scene_result.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void nfc_maker_scene_result_on_enter(void* context) {
102102

103103
FuriString* vcard = furi_string_alloc_set("BEGIN:VCARD\r\nVERSION:3.0\r\n");
104104
furi_string_cat_printf(
105-
vcard, "PRODID:-//Flipper Xtreme//%s//EN\r\n", version_get_version(NULL));
105+
vcard, "PRODID:-//Flipper Zero//%s//EN\r\n", version_get_version(NULL));
106106
furi_string_cat_printf(vcard, "N:%s;%s;;;\r\n", app->small_buf2, app->small_buf1);
107107
furi_string_cat_printf(
108108
vcard,

non_catalog_apps/hid_file_transfer/filelogger.c

Lines changed: 0 additions & 108 deletions
This file was deleted.

non_catalog_apps/hid_file_transfer/filelogger.h

Lines changed: 0 additions & 70 deletions
This file was deleted.

non_catalog_apps/hid_file_transfer/main.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#include <stream/stream.h>
1515
#include <stream/buffered_file_stream.h>
1616
#include <toolbox/stream/file_stream.h>
17-
#include "filelogger.h"
1817
#include "constants.h"
1918
#include <assets_icons.h>
2019
#include "hidtransfer_icons.h"
@@ -409,8 +408,6 @@ bool inputCallback(InputEvent* event, void* context) {
409408

410409
int32_t hidtransfer_app() {
411410
furi_log_set_level(FuriLogLevelDebug);
412-
furi_hal_console_enable();
413-
414411
FURI_LOG_D(TAG, "APP STARTED");
415412

416413
FuriHalUsbInterface* mode = furi_hal_usb_get_config();

non_catalog_apps/hid_file_transfer/usbif.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include <usb_hid.h>
77
#include "usbd_core.h"
88
#include "usb_std.h"
9-
#include "filelogger.h"
109

1110
#include "usbif.h"
1211
#include <storage/storage.h>

0 commit comments

Comments
 (0)