mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-16 20:12:13 +02:00
18 lines
410 B
C++
18 lines
410 B
C++
![]() |
//
|
||
|
// Created by david on 2/25/21.
|
||
|
//
|
||
|
|
||
|
#ifndef SIMPLE_CXX_CLIENT_UART_TERMINAL_HPP
|
||
|
#define SIMPLE_CXX_CLIENT_UART_TERMINAL_HPP
|
||
|
|
||
|
#include "cxx_include/esp_modem_dte.hpp"
|
||
|
#include "esp_modem_dte_config.h"
|
||
|
|
||
|
std::unique_ptr<terminal> create_uart_terminal(const struct dte_config *config);
|
||
|
|
||
|
class dte;
|
||
|
|
||
|
std::unique_ptr<dte> create_dte(const struct dte_config *config);
|
||
|
|
||
|
#endif //SIMPLE_CXX_CLIENT_UART_TERMINAL_HPP
|