Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | zephyr/zephyr_getchar: Explicitly yield to other threads on char availability. | Paul Sokolovsky | 2017-04-04 |
| | | | | | | | | Without this, if there's a large chunk of data coming from hardware (e.g. clipboard paste, or fed programmatically from the other side of the console), there's a behavior of initial mass fill-in of the buffer without any consumption, which starts much later and doesn't catch up with further filling, leading to buffer overflow. | ||
* | zephyr/zephyr_getchar: Use native k_sem instead of legacy nano_sem. | Paul Sokolovsky | 2017-03-27 |
| | |||
* | zephyr/zephyr_getchar: Update to Zephyr 1.6 unified kernel API. | Paul Sokolovsky | 2016-11-30 |
| | |||
* | zephyr/zephyr_getchar: Update for recent Zephyr refactor of console hooks. | Paul Sokolovsky | 2016-10-28 |
| | | | | | uart_irq_input_hook_set() was renamed to uart_console_in_debug_hook_install() and accepts different params. | ||
* | zephyr/zephyr_getchar: Add support for Ctrl+C handling. | Paul Sokolovsky | 2016-10-10 |
| | | | | Patch on top of upstream Zephyr console helpers. | ||
* | zephyr: Add zephyr_getchar module to handle console input. | Paul Sokolovsky | 2016-10-10 |
From https://github.com/pfalcon/zephyr_getchar . |