15 lines
363 B
C
15 lines
363 B
C
/*
|
|
* 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_ */
|