mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-05 05:43:51 -04:00
Updated compiler version for RX RDK demo and completed initial web server demo. Still some tidying up to do.
This commit is contained in:
parent
a4893aed60
commit
a91ec6efe7
17 changed files with 4241 additions and 4683 deletions
|
@ -108,6 +108,33 @@ int32_t R_Ether_Close(uint32_t ch);
|
|||
int32_t R_Ether_Write(uint32_t ch, void *buf, uint32_t len);
|
||||
int32_t R_Ether_Read(uint32_t ch, void *buf);
|
||||
|
||||
/**
|
||||
* FreeRTOS Ethernet API prototypes.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Configure all the ethernet components (MAC, DMA, PHY) ready for communication.
|
||||
*/
|
||||
void vInitEmac( void );
|
||||
|
||||
/*
|
||||
* Auto negotiate the link, returning pass or fail depending on whether a link
|
||||
* was established or not.
|
||||
*/
|
||||
long lEMACWaitForLink( void );
|
||||
|
||||
/*
|
||||
* Check the Rx status, and return the number of bytes received if any.
|
||||
*/
|
||||
unsigned long ulEMACRead( void );
|
||||
|
||||
/*
|
||||
* Send uip_len bytes from uip_buf to the Tx descriptors and initiate a Tx.
|
||||
*/
|
||||
void vEMACWrite( void );
|
||||
|
||||
|
||||
|
||||
|
||||
/****************************************************/
|
||||
/* Ethernet statistic collection data */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue