00001 /*This file has been prepared for Doxygen automatic documentation generation.*/ 00019 /* Copyright (c) 2009 Atmel Corporation. All rights reserved. 00020 * 00021 * Redistribution and use in source and binary forms, with or without 00022 * modification, are permitted provided that the following conditions are met: 00023 * 00024 * 1. Redistributions of source code must retain the above copyright notice, this 00025 * list of conditions and the following disclaimer. 00026 * 00027 * 2. Redistributions in binary form must reproduce the above copyright notice, 00028 * this list of conditions and the following disclaimer in the documentation 00029 * and/or other materials provided with the distribution. 00030 * 00031 * 3. The name of Atmel may not be used to endorse or promote products derived 00032 * from this software without specific prior written permission. 00033 * 00034 * 4. This software may only be redistributed and used in connection with an Atmel 00035 * AVR product. 00036 * 00037 * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED 00038 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 00039 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE 00040 * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR 00041 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00042 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00043 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00044 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00045 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00046 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE 00047 * 00048 */ 00049 00050 #ifndef __SYSCMDS_H__ 00051 #define __SYSCMDS_H__ 00052 00053 #include "FreeRTOS.h" 00054 #include "shell.h" 00055 00056 00057 //_____ D E C L A R A T I O N S ____________________________________________ 00058 00077 eExecStatus e_syscmds_cmd_get_config( eModId xModId, signed short FsNavId, 00078 int ac, signed portCHAR *av[], 00079 signed portCHAR **ppcStringReply ); 00080 00081 00102 eExecStatus e_syscmds_cmd_set_config( eModId xModId, signed short FsNavId, 00103 int ac, signed portCHAR *av[], 00104 signed portCHAR **ppcStringReply ); 00105 00106 00124 eExecStatus e_syscmds_cmd_reset( eModId xModId, signed short FsNavId, 00125 int ac, signed portCHAR *av[], 00126 signed portCHAR **ppcStringReply ); 00127 00128 00146 eExecStatus e_syscmds_help( eModId xModId, signed short FsNavId, 00147 int ac, signed portCHAR *av[], 00148 signed portCHAR **ppcStringReply ); 00149 00150 00168 eExecStatus e_syscmds_reboot( eModId xModId, signed short FsNavId, 00169 int ac, signed portCHAR *av[], 00170 signed portCHAR **ppcStringReply ); 00171 00172 00190 eExecStatus e_syscmds_version( eModId xModId, signed short FsNavId, 00191 int ac, signed portCHAR *av[], 00192 signed portCHAR **ppcStringReply ); 00193 00194 00212 eExecStatus e_syscmds_trace( eModId xModId, signed short FsNavId, 00213 int ac, signed portCHAR *av[], 00214 signed portCHAR **ppcStringReply ); 00215 00216 00221 void v_syscmds_display_traces( void ); 00222 00223 #endif