Hi Clecio:
I downloaded your project, unfortunately, it can't compile, because some files are symbolic links, I can't get the whole source files.
For shell ,you can refer to shell example in KSDK1.3 , I can run this demo well in my side.
KSDK_1.3.0\middleware\tcpip\rtcs\examples\shell\build\iar\shell_frdmk64f
I was informed there is a bug in KSDK1.3, please check the following, I am not sure whether it can fix your issue or not.
SDK_1.3_FRDM-K64F\utilities\shell\src\shell.c
Line 253
context->line[context->l_pos] = 0;
// printf("\b%s \b", &context->line[context->c_pos]);
shell_printf(context, "\b%s \b", &context->line[context->c_pos]);
Line 299
/* move the cursor to new position */
for (i = context->c_pos; i < context->l_pos; i++)
{
// printf("\b");
shell_printf(context, "\b");
}
Regards
Daniel