/* * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */#pragmaonce#include"esp_radio_spinel.h"#include"lib/spinel/spinel_interface.hpp"#include"lib/hdlc/hdlc.hpp"#include"openthread/error.h"namespaceesp{namespaceradio_spinel{/** * This class defines an UART interface to the Radio Co-processor (RCP). * *//* ... */classUartSpinelInterface:publicot::Spinel::SpinelInterface{public:/** * @brief This constructor of object. *//* ... */UartSpinelInterface(void);/** * @brief This destructor of the object. * *//* ... */~UartSpinelInterface(void);/** * Initializes the interface to the Radio Co-processor (RCP). * * @note This method should be called before reading and sending spinel frames to the interface. * * @param[in] aCallback Callback on frame received * @param[in] aCallbackContext Callback context * @param[in] aFrameBuffer A reference to a `RxFrameBuffer` object. * * @retval OT_ERROR_NONE The interface is initialized successfully * @retval OT_ERROR_ALREADY The interface is already initialized. * @retval OT_ERROR_FAILED Failed to initialize the interface. * *//* ... */otErrorInit(ReceiveFrameCallbackaCallback,void*aCallbackContext,RxFrameBuffer&aFrameBuffer);/** * Deinitializes the interface to the RCP. * *//* ... */voidDeinit(void);/** * Encodes and sends a spinel frame to Radio Co-processor (RCP) over the socket. * * @param[in] aFrame A pointer to buffer containing the spinel frame to send. * @param[in] aLength The length (number of bytes) in the frame. * * @retval OT_ERROR_NONE Successfully encoded and sent the spinel frame. * @retval OT_ERROR_BUSY Failed due to another operation is on going. * @retval OT_ERROR_NO_BUFS Insufficient buffer space available to encode the frame. * @retval OT_ERROR_FAILED Failed to call the SPI driver to send the frame. * *//* ... */otErrorSendFrame(constuint8_t*aFrame,uint16_taLength);/** * Waits for receiving part or all of spinel frame within specified interval. * * @param[in] aTimeout The timeout value in microseconds. * * @retval OT_ERROR_NONE Part or all of spinel frame is received. * @retval OT_ERROR_RESPONSE_TIMEOUT No spinel frame is received within @p aTimeout. * *//* ... */otErrorWaitForFrame(uint64_taTimeoutUs);/** * Updates the file descriptor sets with file descriptors used by the radio driver. * * @param[in,out] aMainloopContext A pointer to the mainloop context. * *//* ... */voidUpdateFdSet(void*aMainloopContext);/** * Performs radio driver processing. * * @param[in] aMainloopContext A pointer to the mainloop context. * *//* ... */voidProcess(constvoid*aMainloopContext);/** * Returns the bus speed between the host and the radio. * * @returns Bus speed in bits/second. * *//* ... */uint32_tGetBusSpeed(void)const;/** * Hardware resets the RCP. * * @retval OT_ERROR_NONE Successfully reset the RCP. * @retval OT_ERROR_NOT_IMPLEMENT The hardware reset is not implemented. * *//* ... */otErrorHardwareReset(void);/** * Returns the RCP interface metrics. * * @returns The RCP interface metrics. * *//* ... */constotRcpInterfaceMetrics*GetRcpInterfaceMetrics(void)const{return&mInterfaceMetrics;}/** * This methods registers the callback for RCP failure. * * @param[in] handler The RCP failure handler. * *//* ... */voidRegisterRcpFailureHandler(esp_radio_spinel_rcp_failure_handlerhandler){mRcpFailureHandler=handler;}/** * This method is called when RCP is reset to recreate the connection with it. * Intentionally empty. * *//* ... */otErrorResetConnection(void){returnOT_ERROR_NONE;}/** * @brief This method enable the HDLC interface. * * @return * - ESP_OK on success * - ESP_ERR_NO_MEM if allocation has failed * - ESP_ERROR on failure *//* ... */esp_err_tEnable(constesp_radio_spinel_uart_config_t&radio_uart_config);/** * @brief This method disable the HDLC interface. * *//* ... */esp_err_tDisable(void);voidRegisterUartInitHandler(esp_radio_spinel_uart_init_handlerhandler){mUartInitHandler=handler;}voidRegisterUartDeinitHandler(esp_radio_spinel_uart_deinit_handlerhandler){mUartDeinitHandler=handler;}...private:enum{/** * Maximum wait time in Milliseconds for socket to become writable (see `SendFrame`). * *//* ... */kMaxWaitTime=2000,}{ ... };esp_err_tInitUart(constesp_radio_spinel_uart_config_t&radio_uart_config);esp_err_tDeinitUart(void);intTryReadAndDecode(void);otErrorWaitForWritable(void);otErrorWrite(constuint8_t*frame,uint16_tlength);esp_err_tTryRecoverUart(void);staticvoidHandleHdlcFrame(void*context,otErrorerror);voidHandleHdlcFrame(otErrorerror);ReceiveFrameCallbackm_receiver_frame_callback;void*m_receiver_frame_context;RxFrameBuffer*m_receive_frame_buffer;ot::Hdlc::Decoderm_hdlc_decoder;uint8_t*m_uart_rx_buffer;esp_radio_spinel_uart_config_tm_uart_config;intm_uart_fd;otRcpInterfaceMetricsmInterfaceMetrics;// Non-copyable, intentionally not implemented.UartSpinelInterface(constUartSpinelInterface&);UartSpinelInterface&operator=(constUartSpinelInterface&);esp_radio_spinel_rcp_failure_handlermRcpFailureHandler;esp_radio_spinel_uart_init_handlermUartInitHandler;esp_radio_spinel_uart_deinit_handlermUartDeinitHandler;ot::Spinel::FrameBuffer<kMaxFrameSize>encoder_buffer;...}{...};}{...}// namespace radio_spinel}{...}// namespace esp
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.