SAM4S-EK_FreeRTOS+FAT-SL
1.0
An example project to test the functionality of FreeRTOS+FAT-SL using SD card as data storage medium
|
#include <string.h>
#include <stdint.h>
#include "FreeRTOS.h"
#include "task.h"
#include "FreeRTOS_CLI.h"
Go to the source code of this file.
Classes | |
struct | xCOMMAND_INPUT_LIST |
Typedefs | |
typedef struct xCOMMAND_INPUT_LIST | CLI_Definition_List_Item_t |
Functions | |
portBASE_TYPE | FreeRTOS_CLIRegisterCommand (const CLI_Command_Definition_t *const pxCommandToRegister) |
portBASE_TYPE | FreeRTOS_CLIProcessCommand (const char *const pcCommandInput, char *pcWriteBuffer, size_t xWriteBufferLen) |
char * | FreeRTOS_CLIGetOutputBuffer (void) |
const char * | FreeRTOS_CLIGetParameter (const char *pcCommandString, unsigned portBASE_TYPE uxWantedParameter, portBASE_TYPE *pxParameterStringLength) |
typedef struct xCOMMAND_INPUT_LIST CLI_Definition_List_Item_t |
char* FreeRTOS_CLIGetOutputBuffer | ( | void | ) |
Definition at line 217 of file FreeRTOS_CLI.c.
const char* FreeRTOS_CLIGetParameter | ( | const char * | pcCommandString, |
unsigned portBASE_TYPE | uxWantedParameter, | ||
portBASE_TYPE * | pxParameterStringLength | ||
) |
Definition at line 223 of file FreeRTOS_CLI.c.
portBASE_TYPE FreeRTOS_CLIProcessCommand | ( | const char *const | pcCommandInput, |
char * | pcWriteBuffer, | ||
size_t | xWriteBufferLen | ||
) |
Definition at line 142 of file FreeRTOS_CLI.c.
portBASE_TYPE FreeRTOS_CLIRegisterCommand | ( | const CLI_Command_Definition_t *const | pxCommandToRegister | ) |
Definition at line 101 of file FreeRTOS_CLI.c.