Remove echo of tokenised terminal command
This commit is contained in:
parent
c5f522342d
commit
56113f6d8a
|
@ -1388,7 +1388,6 @@ char * terminal_get_input(const char *prompt)
|
||||||
int terminal_mode(PROGRAMMER * pgm, struct avrpart * p)
|
int terminal_mode(PROGRAMMER * pgm, struct avrpart * p)
|
||||||
{
|
{
|
||||||
char * cmdbuf;
|
char * cmdbuf;
|
||||||
int i;
|
|
||||||
char * q;
|
char * q;
|
||||||
int rc;
|
int rc;
|
||||||
int argc;
|
int argc;
|
||||||
|
@ -1414,10 +1413,12 @@ int terminal_mode(PROGRAMMER * pgm, struct avrpart * p)
|
||||||
return argc;
|
return argc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
fprintf(stdout, ">>> ");
|
fprintf(stdout, ">>> ");
|
||||||
for (i=0; i<argc; i++)
|
for (int i=0; i<argc; i++)
|
||||||
fprintf(stdout, "%s ", argv[i]);
|
fprintf(stdout, "%s ", argv[i]);
|
||||||
fprintf(stdout, "\n");
|
fprintf(stdout, "\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
/* run the command */
|
/* run the command */
|
||||||
rc = do_cmd(pgm, p, argc, argv);
|
rc = do_cmd(pgm, p, argc, argv);
|
||||||
|
|
Loading…
Reference in New Issue