* USB-UART: new gui * Furi: use furi_console for logging instead of printf. * CDC: calling open/close callbacks on interface change * fix vcp_tx block on disconnect * USB mode set by struct pointer * FuriHal: proper event sequence on vcp reconnect * disable debug prints * HAL: add context to UART IRQ's * Context usage in UART IRQ and CDC callbacks * USB-UART: geting rid of baudrate limitations * FuriHal: remove struct pollutant in usb api. Co-authored-by: あく <alleteam@gmail.com> Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			830 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			830 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "gpio_app.h"
 | 
						|
#include "gpio_item.h"
 | 
						|
#include "scenes/gpio_scene.h"
 | 
						|
#include "gpio_custom_event.h"
 | 
						|
#include "usb_uart_bridge.h"
 | 
						|
 | 
						|
#include <gui/gui.h>
 | 
						|
#include <gui/view_dispatcher.h>
 | 
						|
#include <gui/scene_manager.h>
 | 
						|
#include <gui/modules/submenu.h>
 | 
						|
#include <notification/notification-messages.h>
 | 
						|
#include <gui/modules/variable-item-list.h>
 | 
						|
#include "views/gpio_test.h"
 | 
						|
#include "views/gpio_usb_uart.h"
 | 
						|
 | 
						|
struct GpioApp {
 | 
						|
    Gui* gui;
 | 
						|
    NotificationApp* notifications;
 | 
						|
    ViewDispatcher* view_dispatcher;
 | 
						|
    SceneManager* scene_manager;
 | 
						|
 | 
						|
    VariableItemList* var_item_list;
 | 
						|
    GpioTest* gpio_test;
 | 
						|
    GpioUsbUart* gpio_usb_uart;
 | 
						|
    UsbUartBridge* usb_uart_bridge;
 | 
						|
};
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    GpioAppViewVarItemList,
 | 
						|
    GpioAppViewGpioTest,
 | 
						|
    GpioAppViewUsbUart,
 | 
						|
    GpioAppViewUsbUartCfg,
 | 
						|
} GpioAppView;
 |