Lines Matching full:console
19 * @brief Console API
20 * @defgroup console_api Console API
25 /** @brief Initialize console device.
28 * access to console via console_getchar() function and buffered
30 * and incompatible with, callback (push-style) console handling
38 * @brief Read data from console.
51 * @brief Write data to console.
62 /** @brief Get next char from console input buffer.
64 * Return next input character from console. If no characters available,
69 * Zephyr callback-based console input processing, shell subsystem,
77 /** @brief Output a char to console (buffered).
79 * Puts a character into console output buffer. It will be sent
80 * to a console asynchronously, e.g. using an IRQ handler.
89 * access to console via console_getline() function. This function
90 * supersedes, and incompatible with, callback (push-style) console
95 /** @brief Get next line from console input buffer.
97 * Return next input line from console. Until full line is available,
103 * function is incompatible with native Zephyr callback-based console