initial shell implement

This commit is contained in:
tkl
2016-08-01 16:53:06 +02:00
parent a6ba2f7429
commit a2cddd208f
2 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/*
* shell.h
*
* Created on: Aug 1, 2016
* Author: tkl
*/
#ifndef SOURCE_FIRMWARE_KERNEL_INTERFACE_SHELL_H_
#define SOURCE_FIRMWARE_KERNEL_INTERFACE_SHELL_H_
int shell_init(const struct driver *shell_device);
int shell_add_command(const char *command, const void *callback, const void *param);
#endif /* SOURCE_FIRMWARE_KERNEL_INTERFACE_SHELL_H_ */