esp-open-rtos/extras/stdin_uart_interrupt
Angus Gratton 336bad573d timers.h: Remove compile-time-auto-inlining complexity
Fixes bug mentioned in #72 (oops!), also progress towards #57.
2015-11-28 16:32:52 +11:00
..
component.mk extras/stdin_uart_interrupt: stdin via IRQ driven RX driver on UART0 2015-11-21 16:15:58 +11:00
README.txt extras/stdin_uart_interrupt: stdin via IRQ driven RX driver on UART0 2015-11-21 16:15:58 +11:00
stdin_uart_interrupt.c timers.h: Remove compile-time-auto-inlining complexity 2015-11-28 16:32:52 +11:00
stdin_uart_interrupt.h extras/stdin_uart_interrupt: stdin via IRQ driven RX driver on UART0 2015-11-21 16:15:58 +11:00

This module adds interrupt driven receive on UART 0. Using semaphores, a thread
calling read(...) when no data is available will block in an RTOS expected
manner until data arrives. 

This allows for a background thread running a serial terminal in your program
for debugging and state inspection consuming no CPU cycles at all. Not using
this module will make that thread while(1) until data arrives.

No code changes are needed for adding this module, all you need to do is to add
it to EXTRA_COMPONENTS and add the directive configUSE_COUNTING_SEMAPHORES from
FreeRTOSConfig.h in examples/terminal to your project.