]> granicus.if.org Git - esp-idf/commitdiff
Fix missing 'cpp:func:'. Merges https://github.com/espressif/esp-idf/pull/1680
authorXuanZe <119524428@qq.com>
Mon, 5 Mar 2018 05:51:10 +0000 (13:51 +0800)
committerkrzychb <krzychb@gazeta.pl>
Tue, 6 Mar 2018 05:54:54 +0000 (06:54 +0100)
docs/api-reference/peripherals/uart.rst

index da75b08432bd8a1a3001f595618b7d64e35adc12..d7c82c37edfc65ec8bbb5b7c19dfb165517ef09d 100644 (file)
@@ -116,7 +116,7 @@ The API provides a convenient way to handle specific interrupts discussed above
 
 * **FIFO space threshold or transmission timeout reached** - the interrupts on TX or Rx FIFO buffer being filled with specific number of characters or on a timeout of sending or receiving data. To use these interrupts, first configure respective threshold values of the buffer length and the timeout by entering them in :cpp:type:`uart_intr_config_t` structure and calling :cpp:func:`uart_intr_config`. Then enable interrupts with functions :cpp:func:`uart_enable_rx_intr` and :cpp:func:`uart_enable_tx_intr`. To disable these interrupts there are corresponding functions :cpp:func:`uart_disable_rx_intr` or :cpp:func:`uart_disable_tx_intr`.
 
-* **Pattern detection** - an interrupt triggered on detecting a 'pattern' of the same character being sent number of times. The functions that allow to configure, enable and disable this interrupt are :cpp:func:`uart_enable_pattern_det_intr` and uart_disable_pattern_det_intr`.
+* **Pattern detection** - an interrupt triggered on detecting a 'pattern' of the same character being sent number of times. The functions that allow to configure, enable and disable this interrupt are :cpp:func:`uart_enable_pattern_det_intr` and cpp:func:`uart_disable_pattern_det_intr`.
 
 
 Macros