 efded63bcb
			
		
	
	
		efded63bcb
		
			
		
	
	
	
	
		
			
			* 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>
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdio.h>
 | |
| #include <stdint.h>
 | |
| #include <stdarg.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| #define FURI_LOG_LEVEL_DEFAULT 3
 | |
| 
 | |
| #ifndef FURI_LOG_LEVEL
 | |
| #define FURI_LOG_LEVEL FURI_LOG_LEVEL_DEFAULT
 | |
| #endif
 | |
| 
 | |
| #define FURI_LOG_CLR(clr) "\033[0;" clr "m"
 | |
| #define FURI_LOG_CLR_RESET "\033[0m"
 | |
| 
 | |
| #define FURI_LOG_CLR_BLACK "30"
 | |
| #define FURI_LOG_CLR_RED "31"
 | |
| #define FURI_LOG_CLR_GREEN "32"
 | |
| #define FURI_LOG_CLR_BROWN "33"
 | |
| #define FURI_LOG_CLR_BLUE "34"
 | |
| #define FURI_LOG_CLR_PURPLE "35"
 | |
| 
 | |
| #define FURI_LOG_CLR_E FURI_LOG_CLR(FURI_LOG_CLR_RED)
 | |
| #define FURI_LOG_CLR_W FURI_LOG_CLR(FURI_LOG_CLR_BROWN)
 | |
| #define FURI_LOG_CLR_I FURI_LOG_CLR(FURI_LOG_CLR_GREEN)
 | |
| #define FURI_LOG_CLR_D FURI_LOG_CLR(FURI_LOG_CLR_BLUE)
 | |
| #define FURI_LOG_CLR_V
 | |
| 
 | |
| typedef void (*FuriLogPuts)(const char* data);
 | |
| typedef uint32_t (*FuriLogTimestamp)(void);
 | |
| 
 | |
| typedef enum {
 | |
|     FURI_LOG_NONE = 0,
 | |
|     FURI_LOG_ERROR = 1,
 | |
|     FURI_LOG_WARN = 2,
 | |
|     FURI_LOG_INFO = 3,
 | |
|     FURI_LOG_DEBUG = 4,
 | |
|     FURI_LOG_VERBOSE = 5,
 | |
| } FuriLogLevel;
 | |
| 
 | |
| void furi_log_init();
 | |
| void furi_log_print(FuriLogLevel level, const char* format, ...);
 | |
| void furi_log_set_level(FuriLogLevel level);
 | |
| FuriLogLevel furi_log_get_level();
 | |
| void furi_log_set_puts(FuriLogPuts puts);
 | |
| void furi_log_set_timestamp(FuriLogTimestamp timestamp);
 | |
| 
 | |
| #define FURI_LOG_FORMAT(log_letter, tag, format) \
 | |
|     FURI_LOG_CLR_##log_letter "[" #log_letter "][" tag "]: " FURI_LOG_CLR_RESET format "\r\n"
 | |
| #define FURI_LOG_SHOW(tag, format, log_level, log_letter, ...) \
 | |
|     furi_log_print(log_level, FURI_LOG_FORMAT(log_letter, tag, format), ##__VA_ARGS__)
 | |
| 
 | |
| #define FURI_LOG_E(tag, format, ...) FURI_LOG_SHOW(tag, format, FURI_LOG_ERROR, E, ##__VA_ARGS__)
 | |
| #define FURI_LOG_W(tag, format, ...) FURI_LOG_SHOW(tag, format, FURI_LOG_WARN, W, ##__VA_ARGS__)
 | |
| #define FURI_LOG_I(tag, format, ...) FURI_LOG_SHOW(tag, format, FURI_LOG_INFO, I, ##__VA_ARGS__)
 | |
| #define FURI_LOG_D(tag, format, ...) FURI_LOG_SHOW(tag, format, FURI_LOG_DEBUG, D, ##__VA_ARGS__)
 | |
| #define FURI_LOG_V(tag, format, ...) FURI_LOG_SHOW(tag, format, FURI_LOG_VERBOSE, V, ##__VA_ARGS__)
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |