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>2020-10-29 10:11:16 +0300
committerGitHub <noreply@github.com>2020-10-29 10:11:16 +0300
commit0af239ebc02a75abb2ec4d066520322aa31a100c (patch)
tree6fa869203f8987435f1343e8eefbd4456d859cc2 /applications/applications.h
parent8aeafd8179f74e360222d24230e386c13e174e7d (diff)
GUI: status bar rendering. Power: battery indicator. (#207)
* Menu: animation. Irukagotchi: idle image. * Power: battery, usb activity widget * Power: tune battery max voltage and clamp overshoot * get initial charge state Co-authored-by: Aleksandr Kutuzov <aku@plooks.com> Co-authored-by: aanper <mail@s3f.ru>
Diffstat (limited to 'applications/applications.h')
-rw-r--r--applications/applications.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/applications/applications.h b/applications/applications.h
index 003d078d..f06407fe 100644
--- a/applications/applications.h
+++ b/applications/applications.h
@@ -31,6 +31,7 @@ void cc1101_workaround(void* p);
void lf_rfid_workaround(void* p);
void nfc_task(void* p);
void irukagotchi_task(void* p);
+void power_task(void* p);
const FlipperStartupApp FLIPPER_STARTUP[] = {
#ifdef APP_DISPLAY
@@ -59,6 +60,10 @@ const FlipperStartupApp FLIPPER_STARTUP[] = {
{.app = irukagotchi_task, .name = "irukagotchi_task", .libs = {1, FURI_LIB{"menu_task"}}},
#endif
+#ifdef APP_POWER
+ {.app = power_task, .name = "power_task", .libs = {1, FURI_LIB{"gui_task"}}},
+#endif
+
#ifdef APP_CC1101
{.app = cc1101_workaround, .name = "cc1101 workaround", .libs = {1, FURI_LIB{"gui_task"}}},
#endif