Lines Matching full:console
18 /** @brief Initialize console device.
21 * access to console via console_getchar() function and buffered
23 * and incompatible with, callback (push-style) console handling
31 * @brief Read data from console.
44 * @brief Write data to console.
55 /** @brief Get next char from console input buffer.
57 * Return next input character from console. If no characters available,
62 * Zephyr callback-based console input processing, shell subsystem,
70 /** @brief Output a char to console (buffered).
72 * Puts a character into console output buffer. It will be sent
73 * to a console asynchronously, e.g. using an IRQ handler.
82 * access to console via console_getline() function. This function
83 * supersedes, and incompatible with, callback (push-style) console
90 /** @brief Get next line from console input buffer.
92 * Return next input line from console. Until full line is available,
98 * function is incompatible with native Zephyr callback-based console