Wombat Environmental Node 1.0
An environmental node for SDI-12 and digital sensors.
Loading...
Searching...
No Matches
cli_spiffs.h
Go to the documentation of this file.
1#ifndef WOMBAT_CLI_SPIFFS_H
2#define WOMBAT_CLI_SPIFFS_H
3
4#include <freertos/FreeRTOS.h>
5#include <string>
6
10class CLISPIFFS {
11public:
13 inline static const std::string cmd = "spiffs";
14
15 static BaseType_t enter_cli(char *pcWriteBuffer, size_t xWriteBufferLen,
16 const char *pcCommandString);
17};
18
19#endif //WOMBAT_CLI_SPIFFS_H
SPIFFS related commands.
Definition: cli_spiffs.h:10
static BaseType_t enter_cli(char *pcWriteBuffer, size_t xWriteBufferLen, const char *pcCommandString)
Command-line interface command for working with the power buses.
Definition: cli_spiffs.cpp:37
static const std::string cmd
SPIFFS card related commands in the CLI begin with "spiffs".
Definition: cli_spiffs.h:13