mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
27 lines
374 B
C
27 lines
374 B
C
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "tactility_core.h"
|
|
|
|
#include "event_flag.h"
|
|
#include "kernel.h"
|
|
#include "message_queue.h"
|
|
#include "mutex.h"
|
|
#include "pubsub.h"
|
|
#include "semaphore.h"
|
|
#include "stream_buffer.h"
|
|
#include "string.h"
|
|
#include "thread.h"
|
|
#include "timer.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void tt_core_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|