mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-16 01:37:45 -04:00
Remove ipLOCAL_MAC_ADDRESS from demo files (#1244)
* Remove ipLOCAL_MAC_ADDRESS from demo files * Add return variable for IP_Init fucntions
This commit is contained in:
parent
8582188293
commit
a004a21b13
5 changed files with 20 additions and 11 deletions
|
@ -189,6 +189,7 @@ NetworkInterface_t * pxWinPcap_FillInterfaceDescriptor( BaseType_t xEMACIndex,
|
|||
|
||||
int main( void )
|
||||
{
|
||||
BaseType_t xReturn;
|
||||
const uint32_t ulLongTime_ms = pdMS_TO_TICKS( 1000UL );
|
||||
|
||||
/*
|
||||
|
@ -314,7 +315,9 @@ int main( void )
|
|||
}
|
||||
#endif /* ( mainNETWORK_UP_COUNT >= 3U ) */
|
||||
|
||||
FreeRTOS_IPInit_Multi();
|
||||
xReturn = FreeRTOS_IPInit_Multi();
|
||||
|
||||
configASSERT( xReturn == pdTRUE );
|
||||
|
||||
/* Start the RTOS scheduler. */
|
||||
FreeRTOS_debug_printf( ( "vTaskStartScheduler\r\n" ) );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue