Quality RTOS & Embedded Software

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


Loading

FreeRTOS lwip/+TCP/+UDP

Posted by pugglewuggle on December 18, 2014

Hi,

Do the IP stacks for FreeRTOS only work on MCUs with built-in ethernet peripherals, or can it be set up to work with the UART? We use a cellular modem and it requires tunneling anything to be sent through its socket with AT commands. Please advise.

Thanks


FreeRTOS lwip/+TCP/+UDP

Posted by heinbali01 on December 19, 2014

Hi,

FreeRTOS+TCP can also be used with external Ethernet peripherals. But it does not know the SLIP protocol, yet. It expects raw Ethernet IP-packets as input and it will also reply with Ethernet IP-packets.

Regards.


FreeRTOS lwip/+TCP/+UDP

Posted by pugglewuggle on December 20, 2014

When you say ethernet IP packets - do you mean that it requires IP packets encapsulated with the ethernet protocol or are you just saying it requires raw IP? Do you have any examples of this?


FreeRTOS lwip/+TCP/+UDP

Posted by heinbali01 on December 21, 2014

With IP packets I mean a packet that would normally be sent on a LAN.

It has these fields:

~~~~~ The Ethernet header: uint8t destinationaddr[6] uint8t sourceaddr[6] uint16t frametype;

IP- or ARP-header

UDP / TCP / ICMP ~~~~~

Your platform will need to provide two things: a send routine and it must forward received packets to the IP-task:

~~~~~ /* A function which will forward / send the message to the NIC. / portBASETYPE xNetworkInterfaceOutput( xNetworkBufferDescriptort * const pxMessage, portBASE_TYPE bReleaseAfterSend ) { / Encapsulate and send a message. */ vSendMessage( pxMessage->pucEthernetBuffer, pxMessage->xDataLength ); }

/* Forward received packets to the IP-task. */ static void vPassMessage( xNetworkBufferDescriptort *pxMessage ) { xIPStackEventt xRxEvent;

xRxEvent.eEventType = eNetworkRxEvent;
xRxEvent.pvData = ( void * ) pxMessage;

if( xSendEventStructToIPTask( &xRxEvent, 1000ul ) != pdPASS )
{
    /* Could not deliver the message, release it now. */
    vReleaseNetworkBufferAndDescriptor( pxMessage );
}

}

/* A tasking polling the input from the modem. */ void vEthernetTask( void pvParameter ) { for( ; ; ) { xNetworkBufferDescriptor_t *pxMessage;

    /* Wait for a new message from the NIC. */
    pxMessage = pxWaitForMessage( 1000 );
    if( pxMessage != NULL )
    {
        vPassMessage( pxMessage );
    }
}

}

~~~~~

I hope that the pseudo code above make a little clear what is expected of your NIC interface.

Regards, Hein


FreeRTOS lwip/+TCP/+UDP

Posted by heinbali01 on December 27, 2014

Hi,

Just wondering, was the above answer enough to get on with it?

If not, maybe you can describe the kind of hardware setup that you are using, along with the library?

Regards.


FreeRTOS lwip/+TCP/+UDP

Posted by pugglewuggle on January 5, 2015

Very interesting. I'm not quite ready to do this right now so I'll have to explore it more when it is time. Thanks for the answers!


[ 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