25 lines
612 B
C++
25 lines
612 B
C++
/*
|
||
* eth_tx_iface.hpp
|
||
*
|
||
* Created on: 13 <20><><EFBFBD>. 2023 <20>.
|
||
* Author: sychev
|
||
*/
|
||
|
||
#ifndef FREE_RTOS_ETHERNET_ETH_TX_FLOW_IFACE_HPP_
|
||
#define FREE_RTOS_ETHERNET_ETH_TX_FLOW_IFACE_HPP_
|
||
|
||
#include <cstdint>
|
||
#include "free_rtos/ethernet/eth_types.h"
|
||
#include "free_rtos/handler_store/handler_store.hpp"
|
||
|
||
class EthTxFlowIface {
|
||
public:
|
||
virtual bool send(TEthMacPorts port_id, uint8_t * p_data, uint32_t len) = 0;
|
||
virtual bool send(TEthMacPorts port_id, Handler * handler, uint32_t numScatterSegments) = 0;
|
||
virtual ~EthTxFlowIface(){}
|
||
};
|
||
|
||
|
||
|
||
#endif /* FREE_RTOS_ETHERNET_ETH_TX_FLOW_IFACE_HPP_ */
|