Broke out the base64 commands from the text module

This commit is contained in:
adamdunkels 2010-02-03 20:37:29 +00:00
parent 18f5ef71f0
commit 1a34dbe550
8 changed files with 215 additions and 12 deletions

View file

@ -28,12 +28,12 @@
*
* This file is part of the Contiki operating system.
*
* $Id: shell-text.c,v 1.3 2009/03/06 00:29:33 adamdunkels Exp $
* $Id: shell-text.c,v 1.4 2010/02/03 20:37:29 adamdunkels Exp $
*/
/**
* \file
* A brief description of what this file is.
* Text-related shell commands
* \author
* Adam Dunkels <adam@sics.se>
*/
@ -80,7 +80,7 @@ PROCESS_THREAD(shell_echo_process, ev, data)
{
PROCESS_BEGIN();
shell_output(&echo_command, data, (int)strlen(data), "\n", 1);
shell_output(&echo_command, data, (int)strlen(data), "", 0);
PROCESS_END();
}