Adds sitara_depot/free_rtos Original one is on server_gorbunov/SmartForce4.0/sitara_depot
23 lines
444 B
C++
23 lines
444 B
C++
/*
|
|
* eth_tx_iface.hpp
|
|
*
|
|
* Created on: 13 ìàð. 2023 ã.
|
|
* Author: sychev
|
|
*/
|
|
|
|
#ifndef FREE_RTOS_ETHERNET_ETH_TX_FLOW_IFACE_HPP_
|
|
#define FREE_RTOS_ETHERNET_ETH_TX_FLOW_IFACE_HPP_
|
|
|
|
#include <cstdint>
|
|
#include "ethernet/eth_types.h"
|
|
|
|
class EthTxFlowIface {
|
|
public:
|
|
virtual bool send(TEthMacPorts port_id, uint8_t * p_data, uint32_t len) = 0;
|
|
virtual ~EthTxFlowIface(){}
|
|
};
|
|
|
|
|
|
|
|
#endif /* FREE_RTOS_ETHERNET_ETH_TX_FLOW_IFACE_HPP_ */
|