 7522b111c2
			
		
	
	
		7522b111c2
		
			
		
	
	
	
	
		
			
			* bt: refactore cli commands * bt: add radio stack control, add scan mac addresses * bt: refactore with new furi-hal-bt API * bt: f6 targer sync * bt: code cleanup, update documentation * Bt: new command names, proper radio stack handling Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			590 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			590 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <gui/gui.h>
 | |
| #include <gui/view.h>
 | |
| #include <gui/view_dispatcher.h>
 | |
| #include <dialogs/dialogs.h>
 | |
| 
 | |
| #include <gui/modules/submenu.h>
 | |
| #include "views/bt_carrier_test.h"
 | |
| #include "views/bt_packet_test.h"
 | |
| #include "../bt_settings.h"
 | |
| 
 | |
| typedef struct {
 | |
|     BtSettings settings;
 | |
|     Gui* gui;
 | |
|     ViewDispatcher* view_dispatcher;
 | |
|     Submenu* submenu;
 | |
|     BtCarrierTest* bt_carrier_test;
 | |
|     BtPacketTest* bt_packet_test;
 | |
| } BtDebugApp;
 | |
| 
 | |
| typedef enum {
 | |
|     BtDebugAppViewSubmenu,
 | |
|     BtDebugAppViewCarrierTest,
 | |
|     BtDebugAppViewPacketTest,
 | |
| } BtDebugAppView;
 |