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-02-10 12:06:29 +0300
committerGitHub <noreply@github.com>2021-02-10 12:06:29 +0300
commit2d09b8e3181b80d6401605900977cc320e51d312 (patch)
tree5eeb569e70d8745caecf263fd5fa58f303029b6d /applications/bt
parent928bca4eaaaf69edf4c1c18668ccf3a3134caa4b (diff)
[FL-867] GUI: ViewPort arrangement API, better input and draw dispatching (#333)
* Input: refactoring, platform agnostic key configuration, update usage across project. Minor queue usage fixes and tick timings. * Gui: lighter and more efficient input and draw call dispatching, ViewPort rearranging API. View: conditional model updates, API usage update. * BT: smaller update delay * GUI: ViewPort visibility check
Diffstat (limited to 'applications/bt')
-rw-r--r--applications/bt/bt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/bt/bt.c b/applications/bt/bt.c
index 1621331e..eb8c6d4c 100644
--- a/applications/bt/bt.c
+++ b/applications/bt/bt.c
@@ -46,6 +46,6 @@ void bt_task() {
while(1) {
view_port_enabled_set(bt->statusbar_view_port, api_hal_bt_is_alive());
- osDelay(1000);
+ osDelay(1024);
}
}