mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
improved driver creation fixed compile warnings in check.h hello_world example is now working again with lvgl
23 lines
408 B
C
23 lines
408 B
C
#pragma once
|
|
|
|
#include "nb_hardware.h"
|
|
#include "nb_app.h"
|
|
#include "nb_config.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Forward declarations
|
|
typedef void* FuriThreadId;
|
|
typedef struct nb_lvgl nb_lvgl_t;
|
|
|
|
extern void nanobake_start(nb_config_t _Nonnull * config);
|
|
|
|
extern FuriThreadId nanobake_get_app_thread_id(size_t index);
|
|
extern size_t nanobake_get_app_thread_count();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|