BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
47f05ce
Branches
Tags
master
mips_sys
fw
eth.h
begin of ethernet RX implementation, so far only test interface to core, does not meet timing
Stefan Schuermans
commited
47f05ce
at 2012-02-20 21:16:03
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 character * @return character received */ unsigned char eth_rx(void); #endif /* #ifndef ETH_H */