BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
c906a48
Branches
Tags
master
mips_sys
fw
eth.h
implemented ethernet RX busmaster -> packet reception working
Stefan Schuermans
commited
c906a48
at 2012-03-03 23:42:55
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); #endif /* #ifndef ETH_H */