mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 04:41:26 +04:00
17 lines
215 B
C
17 lines
215 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <furi.h>
|
||
|
|
#include <toolbox/pipe.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#define CLI_SHELL_STACK_SIZE (4 * 1024U)
|
||
|
|
|
||
|
|
FuriThread* cli_shell_start(PipeSide* pipe);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|