mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-18 17:35:05 +00:00
* app loading wip * various improvements irq/isr stuff is now working lvgl locking where needed hello world now uses proper mutex for app unlocking etc? * various improvements * cmsis_esp improvements * implement interrupts
29 lines
411 B
C
29 lines
411 B
C
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "furi_core.h"
|
|
|
|
#include "furi_string.h"
|
|
#include "event_flag.h"
|
|
#include "kernel.h"
|
|
#include "message_queue.h"
|
|
#include "mutex.h"
|
|
#include "pubsub.h"
|
|
#include "record.h"
|
|
#include "semaphore.h"
|
|
#include "stream_buffer.h"
|
|
#include "string.h"
|
|
#include "thread.h"
|
|
#include "timer.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void furi_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|