2018-05-03 04:41:10 -04:00
|
|
|
|
2021-05-23 19:50:04 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2018-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2018-05-03 04:41:10 -04:00
|
|
|
|
|
|
|
#ifndef _UART_SELECT_H_
|
|
|
|
#define _UART_SELECT_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "driver/uart.h"
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
UART_SELECT_READ_NOTIF,
|
|
|
|
UART_SELECT_WRITE_NOTIF,
|
|
|
|
UART_SELECT_ERROR_NOTIF,
|
|
|
|
} uart_select_notif_t;
|
|
|
|
|
|
|
|
typedef void (*uart_select_notif_callback_t)(uart_port_t uart_num, uart_select_notif_t uart_select_notif, BaseType_t *task_woken);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set notification callback function for select() events
|
|
|
|
* @param uart_num UART port number
|
|
|
|
* @param uart_select_notif_callback callback function
|
|
|
|
*/
|
|
|
|
void uart_set_select_notif_callback(uart_port_t uart_num, uart_select_notif_callback_t uart_select_notif_callback);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get mutex guarding select() notifications
|
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
portMUX_TYPE *uart_get_selectlock(void);
|
2018-05-03 04:41:10 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif //_UART_SELECT_H_
|