flipperzero-firmware/applications/debug/bt_debug_app/bt_debug_app.c

120 lines
3.7 KiB
C
Raw Normal View History

#include "bt_debug_app.h"
#include <furi_hal_bt.h>
#define TAG "BtDebugApp"
enum BtDebugSubmenuIndex {
BtDebugSubmenuIndexCarrierTest,
BtDebugSubmenuIndexPacketTest,
};
void bt_debug_submenu_callback(void* context, uint32_t index) {
furi_assert(context);
BtDebugApp* app = context;
if(index == BtDebugSubmenuIndexCarrierTest) {
view_dispatcher_switch_to_view(app->view_dispatcher, BtDebugAppViewCarrierTest);
} else if(index == BtDebugSubmenuIndexPacketTest) {
view_dispatcher_switch_to_view(app->view_dispatcher, BtDebugAppViewPacketTest);
}
}
uint32_t bt_debug_exit(void* context) {
UNUSED(context);
return VIEW_NONE;
}
uint32_t bt_debug_start_view(void* context) {
UNUSED(context);
return BtDebugAppViewSubmenu;
}
BtDebugApp* bt_debug_app_alloc() {
[FL-2274] Inventing streams and moving FFF to them (#981) * Streams: string stream * String stream: updated insert/delete api * Streams: generic stream interface and string stream implementation * Streams: helpers for insert and delete_and_insert * FFF: now compatible with streams * MinUnit: introduced tests with arguments * FFF: stream access violation * Streams: copy data between streams * Streams: file stream * FFF: documentation * FFStream: documentation * FFF: alloc as file * MinUnit: support for nested tests * Streams: changed delete_and_insert, now it returns success flag. Added ability dump stream inner parameters and data to cout. * FFF: simplified file open function * Streams: unit tests * FFF: tests * Streams: declare cache_size constant as define, to allow variable modified arrays * FFF: lib moved to a separate folder * iButton: new FFF * RFID: new FFF * Animations: new FFF * IR: new FFF * NFC: new FFF * Flipper file format: delete lib * U2F: new FFF * Subghz: new FFF and streams * Streams: read line * Streams: split * FuriCore: implement memset with extra asserts * FuriCore: implement extra heap asserts without inventing memset * Scene manager: protected access to the scene id stack with a size check * NFC worker: dirty fix for issue where hal_nfc was busy on app start * Furi: update allocator to erase memory on allocation. Replace furi_alloc with malloc. * FuriCore: cleanup memmgr code. * Furi HAL: furi_hal_init is split into critical and non-critical parts. The critical part is currently clock and console. * Memmgr: added ability to track allocations and deallocations through console. * FFStream: some speedup * Streams, FF: minor fixes * Tests: restore * File stream: a slightly more thread-safe version of file_stream_delete_and_insert Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2022-02-18 19:53:46 +00:00
BtDebugApp* app = malloc(sizeof(BtDebugApp));
// Load settings
bt_settings_load(&app->settings);
// Gui
app->gui = furi_record_open(RECORD_GUI);
// View dispatcher
app->view_dispatcher = view_dispatcher_alloc();
view_dispatcher_enable_queue(app->view_dispatcher);
view_dispatcher_attach_to_gui(app->view_dispatcher, app->gui, ViewDispatcherTypeFullscreen);
// Views
app->submenu = submenu_alloc();
submenu_add_item(
app->submenu,
"Carrier test",
BtDebugSubmenuIndexCarrierTest,
bt_debug_submenu_callback,
app);
submenu_add_item(
app->submenu, "Packet test", BtDebugSubmenuIndexPacketTest, bt_debug_submenu_callback, app);
view_set_previous_callback(submenu_get_view(app->submenu), bt_debug_exit);
view_dispatcher_add_view(
app->view_dispatcher, BtDebugAppViewSubmenu, submenu_get_view(app->submenu));
app->bt_carrier_test = bt_carrier_test_alloc();
view_set_previous_callback(
bt_carrier_test_get_view(app->bt_carrier_test), bt_debug_start_view);
view_dispatcher_add_view(
app->view_dispatcher,
BtDebugAppViewCarrierTest,
bt_carrier_test_get_view(app->bt_carrier_test));
app->bt_packet_test = bt_packet_test_alloc();
view_set_previous_callback(bt_packet_test_get_view(app->bt_packet_test), bt_debug_start_view);
view_dispatcher_add_view(
app->view_dispatcher,
BtDebugAppViewPacketTest,
bt_packet_test_get_view(app->bt_packet_test));
// Switch to menu
view_dispatcher_switch_to_view(app->view_dispatcher, BtDebugAppViewSubmenu);
return app;
}
void bt_debug_app_free(BtDebugApp* app) {
furi_assert(app);
// Free views
view_dispatcher_remove_view(app->view_dispatcher, BtDebugAppViewSubmenu);
submenu_free(app->submenu);
view_dispatcher_remove_view(app->view_dispatcher, BtDebugAppViewCarrierTest);
bt_carrier_test_free(app->bt_carrier_test);
view_dispatcher_remove_view(app->view_dispatcher, BtDebugAppViewPacketTest);
bt_packet_test_free(app->bt_packet_test);
view_dispatcher_free(app->view_dispatcher);
// Close gui record
furi_record_close(RECORD_GUI);
app->gui = NULL;
// Free rest
free(app);
}
int32_t bt_debug_app(void* p) {
UNUSED(p);
if(!furi_hal_bt_is_testing_supported()) {
FURI_LOG_E(TAG, "Incorrect radio stack: radio testing fetures are absent.");
DialogsApp* dialogs = furi_record_open(RECORD_DIALOGS);
dialog_message_show_storage_error(dialogs, "Incorrect\nRadioStack");
return 255;
}
BtDebugApp* app = bt_debug_app_alloc();
// Stop advertising
furi_hal_bt_stop_advertising();
view_dispatcher_run(app->view_dispatcher);
// Restart advertising
if(app->settings.enabled) {
furi_hal_bt_start_advertising();
}
bt_debug_app_free(app);
return 0;
}