2ef1d95cf5b52936b651e95a370f0485bb60d998
Stefan Schuermans begin of ethernet RX implem...

Stefan Schuermans authored 12 years ago

1) #ifndef ETH_H
2) #define ETH_H
3) 
Stefan Schuermans made MAC configurable in et...

Stefan Schuermans authored 12 years ago

4) /** initialize MAC address */
5) void eth_mac_init(void);
6) 
Stefan Schuermans implemented ethernet RX bus...

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

9) 
10) /**
Stefan Schuermans implemented ethernet RX bus...

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

17) 
Stefan Schuermans implemented ethernet TX fir...

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

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

Stefan Schuermans authored 12 years ago

24)