Download FreeRTOS
 

Quality RTOS & Embedded Software

LIBRARIES
WHAT'S NEW
FreeRTOS-Plus-TCP now has unified IPv4 and IPv6 functionalities and multi-interface support.
Achieving Unbrickable MCU FOTA for your FreeRTOS-powered Firmware:
FreeRTOS 202012 LTS end of support announced.
FreeRTOS website now available in Simplified Chinese
New FreeRTOS Long Term Support version now available.

FreeRTOS_SetEndPointConfiguration()

[FreeRTOS-Plus-TCP API Reference]

FreeRTOS_IP.h
void FreeRTOS_SetEndPointConfiguration( const uint32_t * pulIPAddress,
                                        const uint32_t * pulNetMask,
                                        const uint32_t * pulGatewayAddress,
                                        const uint32_t * pulDNSServerAddress,
                                        struct xNetworkEndPoint * pxEndPoint )

Set the current IPv4 network address configuration of the TCP/IP stack for a given IPv4 endpoint. Only non-NULL pointers will be used.

Parameters:

pulIPAddress
Used to set the IP address being used by the IP stack. The IP address is represented as a 32-bit number in network byte order.
pulNetMask
Used to set the net mask being used by the IP stack. The net mask is represented as a 32-bit number in network byte order.
pulGatewayAddress
Used to set the IP address of the gateway being used by the IP stack. The IP address is represented as a 32-bit number in network byte order.
pulDNSServerAddress
Used to set the IP address of the DNS server being used by the IP stack. The IP address is represented as a 32-bit number in network byte order.
pxEndPoint
The IPv4 end-point which is being set with the configuration.

Returns:
No return value.

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