18 lines
389 B
C
18 lines
389 B
C
|
/*
|
||
|
* shell_commands.h
|
||
|
*
|
||
|
* Created on: Aug 11, 2016
|
||
|
* Author: tkl
|
||
|
*/
|
||
|
|
||
|
#ifndef SOURCE_FIRMWARE_KERNEL_INCLUDE_SHELL_COMMANDS_H_
|
||
|
#define SOURCE_FIRMWARE_KERNEL_INCLUDE_SHELL_COMMANDS_H_
|
||
|
|
||
|
struct command cmd_kosmos_version;
|
||
|
struct command cmd_list_all_commands;
|
||
|
struct command cmd_echo_on;
|
||
|
struct command cmd_echo_off;
|
||
|
|
||
|
|
||
|
#endif /* SOURCE_FIRMWARE_KERNEL_INCLUDE_SHELL_COMMANDS_H_ */
|