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_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.