Hi
how do I configure NSK to be able to use 2 ethernet connections.
I have the folder for NDK and I have 2 NSP folder for each ethernet driver. Within each driver there is the NIMUDeviceTable defined:
/**
* @brief
* NIMUDeviceTable
*
* @details
* This is the NIMU Device Table for the Platform.
* This should be defined for each platform. Since the current platform
* has a single network Interface; this has been defined here. If the
* platform supports more than one network interface this should be
* defined to have a list of "initialization" functions for each of the
* interfaces.
*/
NIMU_DEVICE_TABLE_ENTRY NIMUDeviceTable[] =
{
/**
* @brief EmacInit for Faraday Init
*/
EmacInit,
NULL
};
How and where should I define these table in oder to use both ports and how do I use them in the application?
Regards
Armin