mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 06:54:19 +00:00
5190aace88
- BT Service: cleanup code - Dialog: correct release order in file browser - Rpc: rollback to pre #3881 state - Kernel: fix inverted behavior in furi_kernel_is_running - Log: properly take mutex when kernel is not running - Thread: rework tread control block scrubbing procedure, ensure that we don't do stupid things in idle task, add new priority for init task - Timer: add control queue flush method, force flush on stop - Furi: system init task now performs thread scrubbing - BleGlue: add some extra checks - FreeRTOSConfig: fix bunch of issues that were preventing configuration from being properly applied and cleanup
42 lines
810 B
C
42 lines
810 B
C
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "core/common_defines.h"
|
|
#include "core/check.h"
|
|
#include "core/event_loop.h"
|
|
#include "core/event_loop_timer.h"
|
|
#include "core/event_flag.h"
|
|
#include "core/kernel.h"
|
|
#include "core/log.h"
|
|
#include "core/memmgr.h"
|
|
#include "core/memmgr_heap.h"
|
|
#include "core/message_queue.h"
|
|
#include "core/mutex.h"
|
|
#include "core/pubsub.h"
|
|
#include "core/record.h"
|
|
#include "core/semaphore.h"
|
|
#include "core/thread.h"
|
|
#include "core/thread_list.h"
|
|
#include "core/timer.h"
|
|
#include "core/string.h"
|
|
#include "core/stream_buffer.h"
|
|
|
|
#include <furi_hal_gpio.h>
|
|
|
|
// Workaround for math.h leaking through HAL in older versions
|
|
#include <math.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void furi_init(void);
|
|
|
|
void furi_run(void);
|
|
|
|
void furi_background(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|