BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
f2b3968
Branches
Tags
master
mips_sys
fw
eth.h
implemented ethernet TX firmware
Stefan Schuermans
commited
f2b3968
at 2012-03-06 18:59:32
eth.h
Blame
History
Raw
#ifndef ETH_H #define ETH_H /** initialize receiver */ void eth_rx_init(void); /** * @brief get next received packet * @param[out] *pptr pointer to packet data * @param[out] *psz size of packet * @return if a packet was received */ int eth_rx(void **pptr, unsigned int *psz); /** * @brief transmit packet * @param[out] ptr pointer to packet data * @param[out] sz size of packet */ void eth_tx(void *ptr, unsigned int sz); #endif /* #ifndef ETH_H */