Hi,
I am currently trying to kick-start the Profinet Device demo featured in the MCU Plus SDK AM243x 08.01.00 (profinet_device_rt_mii_demo_am243x-lp_r5fss0-0_freertos_ti-arm-clang). We already have a license for a software called Profinet Master Simulator from HMS Anybus (https://www.anybus.com/products/gateway-index/specific-gateways/master-simulators/detail/profinet-master-simulator), thus I have connected my computer running this software to the LP-AM243.
I did the following modifications in the appStackConfigure.c in order to set the IP address:
/* Function: static uint32_t APP_configEth (void) */ permanentDcpData.ipAddress = 0xC0A80102; //pPermanentData->ipAddress; permanentDcpData.subnetMask = 0xFFFFFF00; //pPermanentData->subNetMask; permanentDcpData.gateway = 0xC0A80101; //pPermanentData->gateWayAddress;
Unfortunately, according to the debugger, the program is stuck in mdio_v0.c line 170 waiting for a command to complete. Obviously, the device is not shown in Profinet Master Simulator.
Did I miss something?
Cheers,
Kevin