Lines Matching refs:ucMACAddress

116     const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ];  in vSetIPTaskHandle()  local
140 FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in vSetIPTaskHandle()
297 … const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] = { 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF }; in test_FreeRTOS_IPInit_HappyPath() local
333 …rn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in test_FreeRTOS_IPInit_HappyPath()
343 …TEST_ASSERT_EQUAL_MEMORY( ucMACAddress, ipLOCAL_MAC_ADDRESS, ( size_t ) ipMAC_ADDRESS_LENGTH_BYTES… in test_FreeRTOS_IPInit_HappyPath()
353 … const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] = { 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF }; in test_FreeRTOS_IPInit_QueueCreationFails() local
375 …rn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in test_FreeRTOS_IPInit_QueueCreationFails()
394 … const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] = { 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF }; in test_FreeRTOS_IPInit_BufferCreationFails() local
424 …rn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in test_FreeRTOS_IPInit_BufferCreationFails()
443 … const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] = { 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF }; in test_FreeRTOS_IPInit_TaskCreationFails() local
480 …rn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in test_FreeRTOS_IPInit_TaskCreationFails()
490 …TEST_ASSERT_EQUAL_MEMORY( ucMACAddress, ipLOCAL_MAC_ADDRESS, ( size_t ) ipMAC_ADDRESS_LENGTH_BYTES… in test_FreeRTOS_IPInit_TaskCreationFails()
3064 … const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] = { 0xFF, 0xFA, 0x12, 0xBC, 0x12, 0x33 }; in test_FreeRTOS_UpdateMACAddress() local
3066 FreeRTOS_UpdateMACAddress( ucMACAddress ); in test_FreeRTOS_UpdateMACAddress()
3068 TEST_ASSERT_EQUAL_MEMORY( ucMACAddress, ipLOCAL_MAC_ADDRESS, ipMAC_ADDRESS_LENGTH_BYTES ); in test_FreeRTOS_UpdateMACAddress()