b835d7a451
* Furi: replace obsolete furiac_exit with osThreadExit, drop obsolete apis and test. Rename systemd to flipper and move to separate file, cleanup. ApiHal: Rename timebase to os and move freertos hooks there, move insomnia api to power module. * Furi: new thread helper * Furi: cleanup thread documentation * Flipper, AppLoader: update to use FuriThread. Update tasks signatures to match FuriThreadCallback signature. * F4: rename API_HAL_TIMEBASE_DEBUG to API_HAL_OS_DEBUG * Applications: rename FuriApplication to FlipperApplication, use FuriThreadCallback signature for apps. * C++ app template sample, new exit method
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
#include "bt_i.h"
|
|
|
|
Bt* bt_alloc() {
|
|
Bt* bt = furi_alloc(sizeof(Bt));
|
|
|
|
bt->cli = furi_record_open("cli");
|
|
cli_add_command(bt->cli, "bt_info", bt_cli_info, bt);
|
|
bt->gui = furi_record_open("gui");
|
|
bt->menu = furi_record_open("menu");
|
|
|
|
bt->statusbar_icon = assets_icons_get(I_Bluetooth_5x8);
|
|
bt->statusbar_view_port = view_port_alloc();
|
|
view_port_set_width(bt->statusbar_view_port, icon_get_width(bt->statusbar_icon));
|
|
view_port_draw_callback_set(bt->statusbar_view_port, bt_draw_statusbar_callback, bt);
|
|
view_port_enabled_set(bt->statusbar_view_port, false);
|
|
gui_add_view_port(bt->gui, bt->statusbar_view_port, GuiLayerStatusBarLeft);
|
|
|
|
bt->menu_icon = assets_icons_get(A_Bluetooth_14);
|
|
bt->menu_item = menu_item_alloc_menu("Bluetooth", bt->menu_icon);
|
|
with_value_mutex(
|
|
bt->menu, (Menu * menu) { menu_item_add(menu, bt->menu_item); });
|
|
|
|
return bt;
|
|
}
|
|
|
|
void bt_draw_statusbar_callback(Canvas* canvas, void* context) {
|
|
assert(context);
|
|
Bt* bt = context;
|
|
canvas_draw_icon(canvas, 0, 0, bt->statusbar_icon);
|
|
}
|
|
|
|
void bt_cli_info(string_t args, void* context) {
|
|
string_t buffer;
|
|
string_init(buffer);
|
|
api_hal_bt_dump_state(buffer);
|
|
printf(string_get_cstr(buffer));
|
|
string_clear(buffer);
|
|
}
|
|
|
|
int32_t bt_task() {
|
|
Bt* bt = bt_alloc();
|
|
|
|
furi_record_create("bt", bt);
|
|
|
|
api_hal_bt_init();
|
|
|
|
while(1) {
|
|
view_port_enabled_set(bt->statusbar_view_port, api_hal_bt_is_alive());
|
|
osDelay(1024);
|
|
}
|
|
|
|
return 0;
|
|
}
|