Skip to content

Commit 6ba386c

Browse files
committed
run new fbt format
1 parent 73ca3f2 commit 6ba386c

11 files changed

+16
-16
lines changed

helpers/subrem_custom_event.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ typedef enum {
5555
SubRemCustomEventSceneFwWarningContinue,
5656
#endif
5757

58-
} SubRemCustomEvent;
58+
} SubRemCustomEvent;

helpers/subrem_types.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#include <furi_hal.h>
55

66
#define SUBREM_APP_APP_FILE_VERSION 1
7-
#define SUBREM_APP_APP_FILE_TYPE "Flipper SubRem Map file"
8-
#define SUBREM_APP_EXTENSION ".txt"
7+
#define SUBREM_APP_APP_FILE_TYPE "Flipper SubRem Map file"
8+
#define SUBREM_APP_EXTENSION ".txt"
99

1010
typedef enum {
1111
SubRemSubKeyNameUp = (0U),
@@ -45,4 +45,4 @@ typedef enum {
4545
SubRemLoadMapStateErrorBrokenFile,
4646
SubRemLoadMapStateNotAllOK,
4747
SubRemLoadMapStateOK,
48-
} SubRemLoadMapState;
48+
} SubRemLoadMapState;

helpers/txrx/subghz_txrx.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -669,4 +669,4 @@ void subghz_txrx_reset_dynamic_and_custom_btns(SubGhzTxRx* instance) {
669669
SubGhzReceiver* subghz_txrx_get_receiver(SubGhzTxRx* instance) {
670670
furi_assert(instance);
671671
return instance->receiver;
672-
}
672+
}

scenes/subrem_scene_config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ ADD_SCENE(subrem, edit_preview, EditPreview)
99
ADD_SCENE(subrem, enter_new_name, EnterNewName)
1010
#ifdef FW_ORIGIN_Official
1111
ADD_SCENE(subrem, fw_warning, FwWarning)
12-
#endif
12+
#endif

scenes/subrem_scene_fw_warning.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ void subrem_scene_fw_warning_on_exit(void* context) {
126126
SubGhzRemoteApp* app = context;
127127
widget_reset(app->widget);
128128
}
129-
#endif
129+
#endif

subghz_remote_app_i.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,4 +314,4 @@ bool subrem_save_map_to_file(SubGhzRemoteApp* app) {
314314
flipper_format_free(fff_data);
315315

316316
return saved;
317-
}
317+
}

subghz_remote_app_i.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#include <flipper_format/flipper_format_i.h>
2626

27-
#define SUBREM_APP_FOLDER EXT_PATH("subghz_remote")
27+
#define SUBREM_APP_FOLDER EXT_PATH("subghz_remote")
2828
#define SUBREM_MAX_LEN_NAME 64
2929

3030
typedef struct {
@@ -65,4 +65,4 @@ void subrem_map_preset_reset(SubRemMapPreset* map_preset);
6565

6666
bool subrem_save_map_to_file(SubGhzRemoteApp* app);
6767

68-
void subrem_save_active_sub(void* context);
68+
void subrem_save_active_sub(void* context);

views/edit_menu.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,4 +287,4 @@ void subrem_view_edit_menu_free(SubRemViewEditMenu* subghz_edit_menu) {
287287
View* subrem_view_edit_menu_get_view(SubRemViewEditMenu* subrem_view_edit_menu) {
288288
furi_assert(subrem_view_edit_menu);
289289
return subrem_view_edit_menu->view;
290-
}
290+
}

views/edit_menu.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ void subrem_view_edit_menu_add_data_to_show(
2626
FuriString* path,
2727
SubRemLoadSubState state);
2828

29-
uint8_t subrem_view_edit_menu_get_index(SubRemViewEditMenu* subrem_view_edit_remote);
29+
uint8_t subrem_view_edit_menu_get_index(SubRemViewEditMenu* subrem_view_edit_remote);

views/remote.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#include <lib/toolbox/path.h>
88

99
#define SUBREM_VIEW_REMOTE_MAX_LABEL_LENGTH 30
10-
#define SUBREM_VIEW_REMOTE_LEFT_OFFSET 10
11-
#define SUBREM_VIEW_REMOTE_RIGHT_OFFSET 0
10+
#define SUBREM_VIEW_REMOTE_LEFT_OFFSET 10
11+
#define SUBREM_VIEW_REMOTE_RIGHT_OFFSET 0
1212

1313
struct SubRemViewRemote {
1414
View* view;
@@ -320,4 +320,4 @@ void subrem_view_remote_free(SubRemViewRemote* subghz_remote) {
320320
View* subrem_view_remote_get_view(SubRemViewRemote* subrem_view_remote) {
321321
furi_assert(subrem_view_remote);
322322
return subrem_view_remote->view;
323-
}
323+
}

views/remote.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ void subrem_view_remote_set_state(
3535
SubRemViewRemoteState state,
3636
uint8_t presed_btn);
3737

38-
void subrem_view_remote_set_radio(SubRemViewRemote* subrem_view_remote, bool external);
38+
void subrem_view_remote_set_radio(SubRemViewRemote* subrem_view_remote, bool external);

0 commit comments

Comments
 (0)