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:
authorあく <alleteam@gmail.com>2021-08-17 12:41:08 +0300
committerGitHub <noreply@github.com>2021-08-17 12:41:08 +0300
commitf02cec45a0f4d2588c196137e673f5bae7cb93c5 (patch)
tree3c8e2ec280566bb71d9eb3e258915cd2cf55df57 /applications/dolphin
parent1f192c4a48bbf874a8707f38045fe8abb5a0f729 (diff)
[FL-1473, FL-1651] Update STM32CubeWB to latest version. Radio firmware bundle. (#642)
* FuriHal: update STM32CubeWB to latest version. * Makefile: debug other script * FuriHal: correctly handle 0 size transfers in VCP * Dolphin: cleanup and minor timer tuning. * FuriHal: update FreeRTOS config with bigger timer command queue. * FuriHal: delayed irq enabling, fixes missing ticks. * FuriHal: use SFSA to determine free space for internal FS, update linker script to use as much space as theoretically possible. * Scripts: update core2 flashing scripts and OB data. * Github: bundle resources, core2 firmware and supplementary data. * GitHub: versioning for supplemental artifacts
Diffstat (limited to 'applications/dolphin')
-rw-r--r--applications/dolphin/dolphin.c2
-rw-r--r--applications/dolphin/dolphin_i.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/applications/dolphin/dolphin.c b/applications/dolphin/dolphin.c
index 245746a5..51eed34b 100644
--- a/applications/dolphin/dolphin.c
+++ b/applications/dolphin/dolphin.c
@@ -117,7 +117,7 @@ bool dolphin_view_idle_main_input(InputEvent* event, void* context) {
with_value_mutex(
dolphin->menu_vm, (Menu * menu) { menu_ok(menu); });
} else if(event->key == InputKeyUp && event->type == InputTypeShort) {
- osTimerStart(dolphin->timeout_timer, 40);
+ osTimerStart(dolphin->timeout_timer, 64);
view_dispatcher_switch_to_view(dolphin->idle_view_dispatcher, DolphinViewLockMenu);
} else if(event->key == InputKeyDown && event->type == InputTypeShort) {
dolphin_switch_to_app(dolphin, &FLIPPER_ARCHIVE);
diff --git a/applications/dolphin/dolphin_i.h b/applications/dolphin/dolphin_i.h
index 3f47e2c3..cd562492 100644
--- a/applications/dolphin/dolphin_i.h
+++ b/applications/dolphin/dolphin_i.h
@@ -46,8 +46,6 @@ struct Dolphin {
View* idle_view_first_start;
View* idle_view_main;
View* idle_view_dolphin_stats;
- View* idle_view_down;
- View* idle_view_meta;
View* view_hw_mismatch;
View* view_lockmenu;
ViewPort* lock_viewport;