Hi Daniel
thank you for your promt answer.
You are right, i used the older Version IDE V11.1.1. Now i will check the version 11.2
But what is the relationship between the IDE and SDK SW-Example ?
Please can you look in the "lwip_ping_freertos.c" file under source, in the function stack_init().
here you will see the struct init with:
ethernetif_config_t enet_config = {
.phyAddress = EXAMPLE_PHY_ADDRESS,
.clockName = EXAMPLE_CLOCK_NAME,
.macAddress = configMAC_ADDR,
};and in the included file "enet_ethernetif.h" under lwip/port the struct ethernetif_config is defined as:
typedef struct ethernetif_config
{
phy_handle_t *phyHandle;
uint8_t macAddress[NETIF_MAX_HWADDR_LEN];
#if (defined(FSL_FEATURE_SOC_LPC_ENET_COUNT) && (FSL_FEATURE_SOC_LPC_ENET_COUNT > 0))
const mem_range_t *non_dma_memory;
#endif /* FSL_FEATURE_SOC_LPC_ENET_COUNT */
} ethernetif_config_t;So i miss the struct elements: .phyAdress and .clockName in my case.
My question: are thes files different with your files?
Danjel, please can you verify this?
Regards
Alexander