mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 12:14:32 +02:00
Merge branch 'bugfix/minor_fixes_github' into 'master'
Minor fixes from github See merge request !1292
This commit is contained in:
@@ -601,7 +601,7 @@ int uart_write_bytes_with_break(uart_port_t uart_num, const char* src, size_t si
|
|||||||
int uart_read_bytes(uart_port_t uart_num, uint8_t* buf, uint32_t length, TickType_t ticks_to_wait);
|
int uart_read_bytes(uart_port_t uart_num, uint8_t* buf, uint32_t length, TickType_t ticks_to_wait);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief UART ring buffer flush
|
* @brief UART ring buffer flush. This will discard all data in the UART RX buffer.
|
||||||
*
|
*
|
||||||
* @param uart_num UART_NUM_0, UART_NUM_1 or UART_NUM_2
|
* @param uart_num UART_NUM_0, UART_NUM_1 or UART_NUM_2
|
||||||
*
|
*
|
||||||
|
@@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
#define OPENSSL_EXAMPLE_TASK_NAME "openssl_example"
|
#define OPENSSL_EXAMPLE_TASK_NAME "openssl_example"
|
||||||
#define OPENSSL_EXAMPLE_TASK_STACK_WORDS 10240
|
#define OPENSSL_EXAMPLE_TASK_STACK_WORDS 10240
|
||||||
#define OPENSSL_EXAMPLE_TASK_PRORIOTY 8
|
#define OPENSSL_EXAMPLE_TASK_PRIORITY 8
|
||||||
|
|
||||||
#define OPENSSL_EXAMPLE_RECV_BUF_LEN 1024
|
#define OPENSSL_EXAMPLE_RECV_BUF_LEN 1024
|
||||||
|
|
||||||
|
@@ -169,7 +169,7 @@ static void openssl_example_client_init(void)
|
|||||||
OPENSSL_EXAMPLE_TASK_NAME,
|
OPENSSL_EXAMPLE_TASK_NAME,
|
||||||
OPENSSL_EXAMPLE_TASK_STACK_WORDS,
|
OPENSSL_EXAMPLE_TASK_STACK_WORDS,
|
||||||
NULL,
|
NULL,
|
||||||
OPENSSL_EXAMPLE_TASK_PRORIOTY,
|
OPENSSL_EXAMPLE_TASK_PRIORITY,
|
||||||
&openssl_handle);
|
&openssl_handle);
|
||||||
|
|
||||||
if (ret != pdPASS) {
|
if (ret != pdPASS) {
|
||||||
|
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#define OPENSSL_EXAMPLE_TASK_NAME "openssl_example"
|
#define OPENSSL_EXAMPLE_TASK_NAME "openssl_example"
|
||||||
#define OPENSSL_EXAMPLE_TASK_STACK_WORDS 10240
|
#define OPENSSL_EXAMPLE_TASK_STACK_WORDS 10240
|
||||||
#define OPENSSL_EXAMPLE_TASK_PRORIOTY 8
|
#define OPENSSL_EXAMPLE_TASK_PRIORITY 8
|
||||||
|
|
||||||
#define OPENSSL_EXAMPLE_RECV_BUF_LEN 1024
|
#define OPENSSL_EXAMPLE_RECV_BUF_LEN 1024
|
||||||
|
|
||||||
|
@@ -203,7 +203,7 @@ static void openssl_server_init(void)
|
|||||||
OPENSSL_EXAMPLE_TASK_NAME,
|
OPENSSL_EXAMPLE_TASK_NAME,
|
||||||
OPENSSL_EXAMPLE_TASK_STACK_WORDS,
|
OPENSSL_EXAMPLE_TASK_STACK_WORDS,
|
||||||
NULL,
|
NULL,
|
||||||
OPENSSL_EXAMPLE_TASK_PRORIOTY,
|
OPENSSL_EXAMPLE_TASK_PRIORITY,
|
||||||
&openssl_handle);
|
&openssl_handle);
|
||||||
|
|
||||||
if (ret != pdPASS) {
|
if (ret != pdPASS) {
|
||||||
|
Reference in New Issue
Block a user