|
|
|
@ -16,7 +16,10 @@ |
|
|
|
#include "minIni/McuMinINI.h" |
|
|
|
#include "minIni/McuMinINI.h" |
|
|
|
#include "minIni/McuFlash.h" |
|
|
|
#include "minIni/McuFlash.h" |
|
|
|
#include "nvmc.h" |
|
|
|
#include "nvmc.h" |
|
|
|
#include "rs485.h" |
|
|
|
#if PL_CONFIG_USE_RS485 |
|
|
|
|
|
|
|
#include "rs485.h" |
|
|
|
|
|
|
|
#include "McuUart485.h" |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define SHELL_CMD_ELEM_SIZE (sizeof(Shell_cmd_s)) |
|
|
|
#define SHELL_CMD_ELEM_SIZE (sizeof(Shell_cmd_s)) |
|
|
|
@ -172,6 +175,7 @@ static const McuShell_ParseCommandCallback CmdParserTable[] = |
|
|
|
NVMC_ParseCommand, |
|
|
|
NVMC_ParseCommand, |
|
|
|
#if PL_CONFIG_USE_RS485 |
|
|
|
#if PL_CONFIG_USE_RS485 |
|
|
|
RS485_ParseCommand, |
|
|
|
RS485_ParseCommand, |
|
|
|
|
|
|
|
McuUart485_ParseCommand, |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
NULL /* Sentinel */ |
|
|
|
NULL /* Sentinel */ |
|
|
|
}; |
|
|
|
}; |
|
|
|
|