mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
dd9bd224be
* furi_log: introduce log system * applications: rework with furi logging * furi_log: reset color after tag printed * core: add log info Co-authored-by: あく <alleteam@gmail.com>
8 lines
136 B
C
8 lines
136 B
C
#include "furi.h"
|
|
|
|
void furi_init() {
|
|
api_interrupt_init();
|
|
furi_log_init();
|
|
furi_record_init();
|
|
furi_stdglue_init();
|
|
}
|