Home
last modified time | relevance | path

Searched refs:ucIPAddress (Results 1 – 8 of 8) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/test/build-combination/Common/
Dmain.c66 static const uint8_t ucIPAddress[ 4 ] = variable
110 ucIPAddress, in main()
/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/ThirdParty/MSP432/
DNetworkMiddleware.h43 uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ]; member
DNetworkMiddleware.c87 FreeRTOS_IPInit( data.ucIPAddress, in vPublicSetupFreeRTOSTasks()
DREADME.md60 vConvertOctetsToAddr(setupData.ucIPAddress, 192, 168, 1, 9);
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_IP_DiffConfig/
DFreeRTOS_IP_DiffConfig_utest.c113 const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ]; in vSetIPTaskHandle() local
141 FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in vSetIPTaskHandle()
283 const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ] = { 0xC0, 0xB0, 0xAB, 0x12 }; in test_FreeRTOS_IPInit_HappyPath() local
313 …xReturn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddr… in test_FreeRTOS_IPInit_HappyPath()
316 …EST_ASSERT_EQUAL( FreeRTOS_inet_addr_quick( ucIPAddress[ 0 ], ucIPAddress[ 1 ], ucIPAddress[ 2 ], in test_FreeRTOS_IPInit_HappyPath()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_IP/
DFreeRTOS_IP_utest.c112 const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ]; in vSetIPTaskHandle() local
140 FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in vSetIPTaskHandle()
293 const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ] = { 0xC0, 0xB0, 0xAB, 0x12 }; in test_FreeRTOS_IPInit_HappyPath() local
333 …xReturn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddr… in test_FreeRTOS_IPInit_HappyPath()
336 …EST_ASSERT_EQUAL( FreeRTOS_inet_addr_quick( ucIPAddress[ 0 ], ucIPAddress[ 1 ], ucIPAddress[ 2 ], in test_FreeRTOS_IPInit_HappyPath()
349 const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ] = { 0xC0, 0xB0, 0xAB, 0x12 }; in test_FreeRTOS_IPInit_QueueCreationFails() local
375 …xReturn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddr… in test_FreeRTOS_IPInit_QueueCreationFails()
390 const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ] = { 0xC0, 0xB0, 0xAB, 0x12 }; in test_FreeRTOS_IPInit_BufferCreationFails() local
424 …xReturn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddr… in test_FreeRTOS_IPInit_BufferCreationFails()
439 const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ] = { 0xC0, 0xB0, 0xAB, 0x12 }; in test_FreeRTOS_IPInit_TaskCreationFails() local
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_IP.c718 BaseType_t FreeRTOS_IPInit( const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ], in FreeRTOS_IPInit()
761 …efaultIPAddress = FreeRTOS_inet_addr_quick( ucIPAddress[ 0 ], ucIPAddress[ 1 ], ucIPAddress[ 2 ], in FreeRTOS_IPInit()
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_IP.h293 BaseType_t FreeRTOS_IPInit( const uint8_t ucIPAddress[ ipIP_ADDRESS_LENGTH_BYTES ],