OVMS3-idf/examples/peripherals/uart_async_rxtxtasks
Angus Gratton 800bffb8b0 cmake: Add CMakeLists.txt files for all examples
Generating using convert_to_cmake.py, with some minor cleanup
2018-04-30 09:59:20 +10:00
..
main Print out in hex format in case non printable data are received 2017-10-19 22:06:53 +02:00
CMakeLists.txt cmake: Add CMakeLists.txt files for all examples 2018-04-30 09:59:20 +10:00
Makefile Added an asynchronous UART example, using separate RX and TX tasks. 2017-10-19 21:46:09 +02:00
README.md Print out in hex format in case non printable data are received 2017-10-19 22:06:53 +02:00

UART asynchronous example, that uses separate RX and TX tasks

Starts two FreeRTOS tasks:

  • One task for transmitting 'Hello world' via the UART.
  • One task for receiving from the UART.

If you'd like to see your ESP32 receive something, simply short TXD_PIN and RXD_PIN. By doing this data transmitted on TXD_PIN will be received on RXD_PIN. See the definitions of TXD_PIN and RXD_PIN in ./main/uart_async_rxtxtasks_main.c.

The output for such configuration will look as follows:

I (3261) TX_TASK: Wrote 11 bytes
I (4261) RX_TASK: Read 11 bytes: 'Hello world'
I (4261) RX_TASK: 0x3ffb821c   48 65 6c 6c 6f 20 77 6f  72 6c 64                 |Hello world|
...

The third line above prints received data in hex format, that comes handy to display non printable data bytes.