ee604bb9bf19f0780562dccfff9d84f3d2035e17
Stefan Schuermans begin of ethernet RX implem...

Stefan Schuermans authored 12 years ago

1) #ifndef ETH_H
2) #define ETH_H
3) 
Stefan Schuermans implemented ethernet RX bus...

Stefan Schuermans authored 12 years ago

4) /** initialize receiver */
5) void eth_rx_init(void);
Stefan Schuermans begin of ethernet RX implem...

Stefan Schuermans authored 12 years ago

6) 
7) /**
Stefan Schuermans implemented ethernet RX bus...

Stefan Schuermans authored 12 years ago

8)  * @brief get next received packet
9)  * @param[out] *pptr pointer to packet data
10)  * @param[out] *psz size of packet
11)  * @return if a packet was received
Stefan Schuermans begin of ethernet RX implem...

Stefan Schuermans authored 12 years ago

12)  */
Stefan Schuermans implemented ethernet RX bus...

Stefan Schuermans authored 12 years ago

13) int eth_rx(void **pptr, unsigned int *psz);
Stefan Schuermans begin of ethernet RX implem...

Stefan Schuermans authored 12 years ago

14) 
Stefan Schuermans implemented ethernet TX fir...

Stefan Schuermans authored 12 years ago

15) /**
16)  * @brief transmit packet
17)  * @param[out] ptr pointer to packet data
18)  * @param[out] sz size of packet
19)  */
Stefan Schuermans ethernet TX function takes...

Stefan Schuermans authored 12 years ago

20) void eth_tx(const void *ptr, unsigned int sz);
Stefan Schuermans implemented ethernet TX fir...

Stefan Schuermans authored 12 years ago

21)