summaryrefslogtreecommitdiff
path: root/zephyr/src
AgeCommit message (Collapse)Author
2017-04-04zephyr/zephyr_getchar: Explicitly yield to other threads on char availability.Paul Sokolovsky
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.
2017-03-27zephyr/zephyr_getchar: Use native k_sem instead of legacy nano_sem.Paul Sokolovsky
2016-11-30zephyr/zephyr_getchar: Update to Zephyr 1.6 unified kernel API.Paul Sokolovsky
2016-10-28zephyr/zephyr_getchar: Update for recent Zephyr refactor of console hooks.Paul Sokolovsky
uart_irq_input_hook_set() was renamed to uart_console_in_debug_hook_install() and accepts different params.
2016-10-12zephyr: Add copyright blurbs.Paul Sokolovsky
2016-10-10zephyr/zephyr_getchar: Add support for Ctrl+C handling.Paul Sokolovsky
Patch on top of upstream Zephyr console helpers.
2016-10-10zephyr: Add zephyr_getchar module to handle console input.Paul Sokolovsky
From https://github.com/pfalcon/zephyr_getchar .
2016-10-10zephyr: Initial Zephyr RTOS port, Zephyr part.Paul Sokolovsky