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-12-10 17:25:20 +0300
committerGitHub <noreply@github.com>2020-12-10 17:25:20 +0300
commit2f2f6b5f50443316551492898bd011e1e1591853 (patch)
tree64aadcca8b228f5266bdc3176591f9fe84fb4ae2 /applications/applications.h
parentc4b1d4b6f0f6052c0f9a2c3dd842156d74ba358f (diff)
BLE: F3 integration (#260)
* BLE: working version * BLE: cleanup * BLE: update device description and DIS. * BLE: explicitly take semaphore and configure CLK48, bt subsystem status, remove LPM. * HAL: add missing api_hal_bt_is_alive symbol * TODO about valuemutex * duplicate f3-1 (f4) ioc from f3 * regenerate project * use target dir for ble glue path * update f4 from f3 Co-authored-by: coreglitch <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 1cdfde3e..266ec715 100644
--- a/applications/applications.h
+++ b/applications/applications.h
@@ -32,6 +32,7 @@ void lf_rfid_workaround(void* p);
void nfc_task(void* p);
void irukagotchi_task(void* p);
void power_task(void* p);
+void bt_task(void* p);
void sd_card_test(void* p);
void application_vibro(void* p);
void app_gpio_test(void* p);
@@ -101,6 +102,10 @@ const FlipperStartupApp FLIPPER_STARTUP[] = {
.icon = A_Plugins_14},
#endif
+#ifdef APP_BT
+ {.app = bt_task, .name = "bt_task", .libs = {1, FURI_LIB{"cli_task"}}, .icon = A_Plugins_14},
+#endif
+
#ifdef APP_CC1101
{.app = cc1101_workaround,
.name = "cc1101 workaround",