// // Copyright 2013 Ettus Research LLC // // SPDX-License-Identifier: GPL-3.0 // #ifndef INCLUDED_B200_UART_HPP #define INCLUDED_B200_UART_HPP #include #include //uart iface #include #include class b200_uart: boost::noncopyable, public uhd::uart_iface { public: typedef boost::shared_ptr sptr; static sptr make(uhd::transport::zero_copy_if::sptr, const uint32_t sid); virtual void handle_uart_packet(uhd::transport::managed_recv_buffer::sptr buff) = 0; }; #endif /* INCLUDED_B200_UART_HPP */