From 3ed16758c04def3536339bfe69c7b46b9534d968 Mon Sep 17 00:00:00 2001 From: Jeroen Domburg Date: Thu, 15 Dec 2016 09:44:21 +0800 Subject: [PATCH] Update examples in uart.h --- components/driver/include/driver/uart.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/driver/include/driver/uart.h b/components/driver/include/driver/uart.h index 951ada929..1d5320601 100644 --- a/components/driver/include/driver/uart.h +++ b/components/driver/include/driver/uart.h @@ -610,10 +610,10 @@ esp_err_t uart_flush(uart_port_t uart_num); * //b1. Setup UART driver(with UART queue) * QueueHandle_t uart_queue; * //parameters here are just an example, tx buffer size is 2048 - * uart_driver_install(uart_num, 1024 * 2, 1024 * 2, 10, UART_INTR_NUM, &uart_queue); + * uart_driver_install(uart_num, 1024 * 2, 1024 * 2, 10, &uart_queue, 0); * //b2. Setup UART driver(without UART queue) * //parameters here are just an example, tx buffer size is 0 - * uart_driver_install(uart_num, 1024 * 2, 0, 10, UART_INTR_NUM, NULL); + * uart_driver_install(uart_num, 1024 * 2, 0, 10, NULL, 0); *@endcode *-----------------------------------------------------------------------------* * @code{c}