mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-26 22:40:25 +00:00
3d872cf37a
* firmware: remove nfc lib build settings section * furi hal nfc: fix nfc irq gpio deinit * lib nfc: remove deprecated exception from sources * nfc: use ASK demodulator in transparent mode * mf ultralight: add upper page bound for NTAGI2C1K * furi hal nfc: set event if nfc event was started * nfc: fix PVS warnings * lib signal reader: remove gpio pull setting in alloc * furi: added math.h include for compatibility with existing apps * nfc: remove resolved TODO in mf desfire poller * bump api symbol version Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: あく <alleteam@gmail.com>
40 lines
744 B
C
40 lines
744 B
C
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "core/check.h"
|
|
#include "core/common_defines.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/timer.h"
|
|
#include "core/string.h"
|
|
#include "core/stream_buffer.h"
|
|
|
|
#include <furi_hal_gpio.h>
|
|
|
|
// FreeRTOS timer, REMOVE AFTER REFACTORING
|
|
#include <timers.h>
|
|
|
|
// Workaround for math.h leaking through HAL in older versions
|
|
#include <math.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void furi_init();
|
|
|
|
void furi_run();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|