c97d766e5b
* fix stack size, file listing works * fix scrollbar, update docs * cut long filenames * Dolphin: overhaul unlocking logic, unlocked message added * furi - added common_defines.h, minor macro cleanup; fix scrollbar type conversion * remove door opening animation * adaptive long file name shortening, item icons, invert selection * archive: browser tab, file types (beta); scenes: fix sleep emote * dont trim unknown extensions * fix string_size usage * array container for file list, fixes * better path handling * archive: renaming, adding to favorites worksl scrollbar fix: limit min bar height to 1px to prevent disappearance on large lists Co-authored-by: あく <alleteam@gmail.com>
30 lines
480 B
C
30 lines
480 B
C
#pragma once
|
|
|
|
#include <cmsis_os2.h>
|
|
|
|
#include <furi/common_defines.h>
|
|
#include <furi/check.h>
|
|
#include <furi/memmgr.h>
|
|
#include <furi/pubsub.h>
|
|
#include <furi/record.h>
|
|
#include <furi/stdglue.h>
|
|
#include <furi/thread.h>
|
|
#include <furi/valuemutex.h>
|
|
#include <furi/log.h>
|
|
#include <furi/common_defines.h>
|
|
|
|
#include <api-hal-gpio.h>
|
|
#include <api-hal/api-interrupt-mgr.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void furi_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|