Download FreeRTOS
 

Quality RTOS & Embedded Software

LIBRARIES
WHAT'S NEW
Simplifying Authenticated Cloud Connectivity for Any Device.
Designing an energy efficient and cloud-connected IoT solution with CoAP.
Introducing FreeRTOS Kernel version 11.0.0:
FreeRTOS Roadmap and Code Contribution process.
OPC-UA over TSN with FreeRTOS.

FreeRTOS_FillEndPoint()

[FreeRTOS-Plus-TCP API Reference]

FreeRTOS_Routing.h
void FreeRTOS_FillEndPoint( NetworkInterface_t * pxNetworkInterface,
                            NetworkEndPoint_t * pxEndPoint,
                            const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ],
                            const uint8_t ucNetMask[ ipIP_ADDRESS_LENGTH_BYTES ],
                            const uint8_t ucGatewayAddress[ ipIP_ADDRESS_LENGTH_BYTES ],
                            const uint8_t ucDNSServerAddress[ ipIP_ADDRESS_LENGTH_BYTES ],
                            const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] );

Provide the IPv4 end-point information and append it to the FreeRTOS-Plus-TCP stack.

Parameters:

pxNetworkInterface
The interface to which it belongs.

pxEndPoint
Space for the new end-point. This memory is dedicated for the end-point and should not be freed or get any other purpose.

ucIPAddress
The IP-address.

ucNetMask
The prefix which shall be used for this end-point.

ucGatewayAddress
The IP-address of a device on the LAN which can serve as as a gateway to the Internet.

ucDNSServerAddress
The IP-address of a DNS server.

ucMACAddress
The MAC address of the end-point.

Returns:
No return value.

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