Zephyr API Documentation
3.5.0
A Scalable Open Source RTOS
|
|
3.5.0 |
Go to the source code of this file.
Data Structures | |
struct | console_input |
Console input representation. More... | |
Macros | |
#define | CONSOLE_MAX_LINE_LEN CONFIG_CONSOLE_INPUT_MAX_LINE_LEN |
Typedefs | |
typedef void(* | console_input_fn) (struct k_fifo *avail, struct k_fifo *lines, uint8_t(*completion) (char *str, uint8_t len)) |
Console input processing handler signature. | |
#define CONSOLE_MAX_LINE_LEN CONFIG_CONSOLE_INPUT_MAX_LINE_LEN |
typedef void(* console_input_fn) (struct k_fifo *avail, struct k_fifo *lines, uint8_t(*completion)(char *str, uint8_t len)) |
Console input processing handler signature.
Input processing is started when string is typed in the console. Carriage return is translated to NULL making string always NULL terminated. Application before calling register function need to initialize two fifo queues mentioned below.