BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
41147d3
Branches
Tags
master
mips_sys
fw
eth.h
implemented ethernet RX frame detection
Stefan Schuermans
commited
41147d3
at 2012-03-03 16:13:53
eth.h
Blame
History
Raw
#ifndef ETH_H #define ETH_H /** * @brief check if receiving a character is possible * @return if receiving a character is possible */ int eth_can_rx(void); /** * @brief receive a word * @return word received */ unsigned int eth_rx(void); #endif /* #ifndef ETH_H */