Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/esp32/
DNetworkInterface.c51 uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ]; in xNetworkInterfaceInitialise() local
57 esp_wifi_get_mac( ESP_IF_WIFI_STA, ucMACAddress ); in xNetworkInterfaceInitialise()
58 FreeRTOS_UpdateMACAddress( ucMACAddress ); in xNetworkInterfaceInitialise()
/FreeRTOS-Plus-TCP-v3.1.0/test/build-combination/Common/
Dmain.c54 const uint8_t ucMACAddress[ 6 ] = variable
114 ucMACAddress ); in main()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/ConfigFiles/
DIPTraceMacroDefaults.h72 #define iptraceARP_TABLE_ENTRY_CREATED( ulIPAddress, ucMACAddress ) argument
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_IP.h297 const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] );
321 void FreeRTOS_UpdateMACAddress( const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] );
DIPTraceMacroDefaults.h114 #define iptraceARP_TABLE_ENTRY_CREATED( ulIPAddress, ucMACAddress ) argument
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_IP/
DFreeRTOS_IP_utest.c116 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
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_IP_DiffConfig/
DFreeRTOS_IP_DiffConfig_utest.c117 const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ]; in vSetIPTaskHandle() local
141 FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in vSetIPTaskHandle()
287 … const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] = { 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF }; in test_FreeRTOS_IPInit_HappyPath() local
313 …rn = FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); in test_FreeRTOS_IPInit_HappyPath()
323 …TEST_ASSERT_EQUAL_MEMORY( ucMACAddress, ipLOCAL_MAC_ADDRESS, ( size_t ) ipMAC_ADDRESS_LENGTH_BYTES… in test_FreeRTOS_IPInit_HappyPath()
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_IP.c722 const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] ) in FreeRTOS_IPInit()
790 … ( void ) memcpy( ipLOCAL_MAC_ADDRESS, ucMACAddress, ( size_t ) ipMAC_ADDRESS_LENGTH_BYTES ); in FreeRTOS_IPInit()
2092 void FreeRTOS_UpdateMACAddress( const uint8_t ucMACAddress[ ipMAC_ADDRESS_LENGTH_BYTES ] ) in FreeRTOS_UpdateMACAddress()
2095 ( void ) memcpy( ipLOCAL_MAC_ADDRESS, ucMACAddress, ( size_t ) ipMAC_ADDRESS_LENGTH_BYTES ); in FreeRTOS_UpdateMACAddress()