URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [uIP_Demo_IAR_ARM7/] [EMAC/] [SAM7_EMAC.h] - Rev 594
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef SAM_7_EMAC_H #define SAM_7_EMAC_H /* * Initialise the EMAC driver. If successful a semaphore is returned that * is used by the EMAC ISR to indicate that Rx packets have been received. * If the initialisation fails then NULL is returned. */ xSemaphoreHandle xEMACInit( void ); /* * Send the current uIP buffer. This copies the uIP buffer to one of the * EMAC Tx buffers, then indicates to the EMAC that the buffer is ready. */ long lEMACSend( void ); /* * Called in response to an EMAC Rx interrupt. Copies the received frame * into the uIP buffer. */ unsigned long ulEMACPoll( void ); #endif
Go to most recent revision | Compare with Previous | Blame | View Log