23 lines
433 B
C
23 lines
433 B
C
/*
|
|
* shell_data.h
|
|
*
|
|
* Created on: Aug 11, 2016
|
|
* Author: tkl
|
|
*/
|
|
|
|
#ifndef SOURCE_FIRMWARE_KERNEL_INCLUDE_SHELL_DATA_H_
|
|
#define SOURCE_FIRMWARE_KERNEL_INCLUDE_SHELL_DATA_H_
|
|
|
|
#pragma pack(push)
|
|
#pragma pack(1)
|
|
struct shell_object {
|
|
struct list command_list;
|
|
const struct driver *shell_device;
|
|
bool echo_on;
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
struct shell_object shell_object;
|
|
|
|
#endif /* SOURCE_FIRMWARE_KERNEL_INCLUDE_SHELL_DATA_H_ */
|