mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-29 12:49:54 +00:00
43 lines
810 B
C
43 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
|