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>
28 lines
414 B
C
28 lines
414 B
C
#pragma once
|
|
|
|
#include <cmsis_os2.h>
|
|
|
|
#include <furi/check.h>
|
|
#include <furi/memmgr.h>
|
|
#include <furi/pubsub.h>
|
|
#include <furi/record.h>
|
|
#include <furi/stdglue.h>
|
|
#include <furi/thread.h>
|
|
#include <furi/valuemutex.h>
|
|
#include <furi/log.h>
|
|
|
|
#include <api-hal-gpio.h>
|
|
#include <api-hal/api-interrupt-mgr.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void furi_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|