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:
Rahul Kar 2024-08-14 11:56:38 +05:30 committed by GitHub
parent 8582188293
commit a004a21b13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 20 additions and 11 deletions

View file

@ -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" ) );