Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

Socket Creation Problem

Posted by ramanuday on July 2, 2015

I tried to create a new socket using

FreeRTOSsocket(FREERTOSAFINET, FREERTOSSOCKDGRAM, FREERTOSIPPROTO_UDP );

but it is entering the vAssertCalled() function and continuously looping over there.

When i tried to debug it is being called from the function

FreeRTOSSocket() { ... ... configASSERT( listLISTIS_INITIALISED( &xBoundSocketsList ) );

...

}

Can anyone help me with this socket creation..?


Socket Creation Problem

Posted by rtel on July 2, 2015

Have you called FreeRTOSIPInit()? http://www.freertos.org/FreeRTOS-Plus/FreeRTOSPlusTCP/TCPNetworkingTutorialInitialising_TCP.html


Socket Creation Problem

Posted by heinbali01 on July 2, 2015

Hi,

On the page referred to by Richard you will also see this important user-provided function:

~~~~~ void vApplicationIPNetworkEventHook( eIPCallbackEventt eNetworkEvent ) { static BaseTypet xTasksAlreadyCreated = pdFALSE;

/* Both eNetworkUp and eNetworkDown events can be processed here. */
if( eNetworkEvent == eNetworkUp )
{
    /* Create the tasks that use the TCP/IP stack if they have not already
    been created. */
    if( xTasksAlreadyCreated == pdFALSE )
    {
        /*
         * For convenience, tasks that use FreeRTOS+TCP can be created here
         * to ensure they are not created before the network is usable.
         */

        xTasksAlreadyCreated = pdTRUE;
    }
}

} ~~~~~

Only after xTasksAlreadyCreated has become true, you can start create and use sockets. Of course, you can also make this a global variable and call it something like:

BaseType_t xIPNetworkIsReady = pdFALSE;

Regards.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner