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>
64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
#include "log.h"
|
|
#include "check.h"
|
|
#include <cmsis_os2.h>
|
|
#include <furi-hal.h>
|
|
|
|
typedef struct {
|
|
FuriLogLevel log_level;
|
|
FuriLogPuts puts;
|
|
FuriLogTimestamp timetamp;
|
|
osMutexId_t mutex;
|
|
} FuriLogParams;
|
|
|
|
static FuriLogParams furi_log;
|
|
|
|
void furi_log_init() {
|
|
// Set default logging parameters
|
|
furi_log.log_level = FURI_LOG_LEVEL;
|
|
furi_log.puts = furi_hal_console_puts;
|
|
furi_log.timetamp = HAL_GetTick;
|
|
furi_log.mutex = osMutexNew(NULL);
|
|
}
|
|
|
|
void furi_log_print(FuriLogLevel level, const char* format, ...) {
|
|
va_list args;
|
|
va_start(args, format);
|
|
if(level <= furi_log.log_level && osMutexAcquire(furi_log.mutex, osWaitForever) == osOK) {
|
|
string_t string;
|
|
|
|
// Timestamp
|
|
string_init_printf(string, "%lu ", furi_log.timetamp());
|
|
furi_log.puts(string_get_cstr(string));
|
|
string_clear(string);
|
|
|
|
va_list args;
|
|
va_start(args, format);
|
|
string_init_vprintf(string, format, args);
|
|
va_end(args);
|
|
|
|
furi_log.puts(string_get_cstr(string));
|
|
string_clear(string);
|
|
|
|
osMutexRelease(furi_log.mutex);
|
|
}
|
|
va_end(args);
|
|
}
|
|
|
|
void furi_log_set_level(FuriLogLevel level) {
|
|
furi_log.log_level = level;
|
|
}
|
|
|
|
FuriLogLevel furi_log_get_level(void) {
|
|
return furi_log.log_level;
|
|
}
|
|
|
|
void furi_log_set_puts(FuriLogPuts puts) {
|
|
furi_assert(puts);
|
|
furi_log.puts = puts;
|
|
}
|
|
|
|
void furi_log_set_timestamp(FuriLogTimestamp timestamp) {
|
|
furi_assert(timestamp);
|
|
furi_log.timetamp = timestamp;
|
|
}
|