We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7c55ee commit 94aff76Copy full SHA for 94aff76
source/portable/NetworkInterface/Zynq/x_emacpsif.h
@@ -60,7 +60,6 @@
60
61
extern XEmacPs_Config mac_configs[ XPAR_XEMACPS_NUM_INSTANCES ];
62
63
- *
64
void xemacpsif_setmac( uint32_t index,
65
uint8_t * addr );
66
uint8_t * xemacpsif_getmac( uint32_t index );
source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c
@@ -222,7 +222,7 @@ void emacps_send_handler( void * arg )
222
*/
223
xemacpsif->isr_events |= EMAC_IF_TX_EVENT;
224
225
- /* Take the mutex without blocking. */
+ /* Give to the mutex so that a new packet can be sent from emacps_send_message(). */
226
xSemaphoreGiveFromISR( xemacpsif->txMutex, &xHigherPriorityTaskWoken );
227
228
if( xEMACTaskHandles[ xEMACIndex ] != NULL )
0 commit comments