Skip to content

Commit 10d33ab

Browse files
committed
fixes some identation
1 parent ec297fd commit 10d33ab

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,11 @@ The data is:
6565
|------|-----|---------|----------|--------------|
6666
| 0 | 1 | 2 | 3 | 2 |
6767

68+
---
69+
70+
**Note:** main branch works with latest version of FlipperZero firmware, **1.0.1** (in the moment of writting this).
71+
If you want to have this app running with a firmware version < 1.* check the *legacy-previous-API-1* at the repo.
72+
73+
---
74+
75+
<3 & Hack the Planet!

wifi_map.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -328,24 +328,24 @@ static void wifi_map_app_free(WiFiMapApp* app) {
328328

329329
int32_t wifi_map_app(void *p)
330330
{
331-
UNUSED(p);
332-
FURI_LOG_I(TAG, "wifi_map_app starting...");
333-
WiFiMapApp* app = wifi_map_app_alloc();
331+
UNUSED(p);
332+
FURI_LOG_I(TAG, "wifi_map_app starting...");
333+
WiFiMapApp* app = wifi_map_app_alloc();
334334
DateTime rtc = {0};
335335
furi_hal_rtc_get_datetime(&rtc);
336336
FuriString *datetime = furi_string_alloc();
337337
furi_string_printf(datetime, "##### %d-%d-%d_%d:%d:%d #####\n",
338338
rtc.day, rtc.month, rtc.year, rtc.hour, rtc.minute, rtc.second);
339339
if (!storage_file_write(
340-
app->file,
341-
furi_string_get_cstr(datetime),
342-
furi_string_size(datetime))) {
343-
FURI_LOG_E(TAG, "Failed to write to file");
340+
app->file,
341+
furi_string_get_cstr(datetime),
342+
furi_string_size(datetime))) {
343+
FURI_LOG_E(TAG, "Failed to write to file");
344344
}
345345
view_dispatcher_run(app->view_dispatcher);
346346
furi_string_free(datetime);
347347
wifi_map_app_free(app);
348-
return 0;
348+
return 0;
349349
}
350350

351351
// Screen is 128x64 px

0 commit comments

Comments
 (0)