41147d391f30f2357048efbf73b98abcf5fdfed8
Stefan Schuermans begin of ethernet RX implem...

Stefan Schuermans authored 12 years ago

1) #ifndef ETH_H
2) #define ETH_H
3) 
4) /**
5)  * @brief check if receiving a character is possible
6)  * @return if receiving a character is possible
7)  */
8) int eth_can_rx(void);
9) 
10) /**
Stefan Schuermans implemented ethernet RX fra...

Stefan Schuermans authored 12 years ago

11)  * @brief receive a word
12)  * @return word received
Stefan Schuermans begin of ethernet RX implem...

Stefan Schuermans authored 12 years ago

13)  */
Stefan Schuermans implemented ethernet RX fra...

Stefan Schuermans authored 12 years ago

14) unsigned int eth_rx(void);