Other Parts Discussed in Thread: CONTROLSUITE
Hi
TI reference design for ET1100+TMS320F2837x ethercat solution as below.
http://www.ti.com/tool/TIDM-DELFINO-ETHERCAT?keyMatch=ETHERCAT&tisearch=Search--Everything
current demo code uses EMIF2 to work with ET1100,
the pin connection map is as blow, GPIO136 interrupt is configured in code, but theGPIO93,GPIO94,GPIO89,GPIO90 has no initialization code in the demo
code, i want to know why we don't need to do set these pins when these MCU pins has connection with ET1100.
//function for EMIF2 GPIO pin setup
void setup_emif2_pinmux_async_16bit(Uint16 cpu_sel)
{
Uint16 i;
for (i=96; i<=121;i++)
{
GPIO_SetupPinMux(i,cpu_sel,3);
}
for (i=53; i<=68;i++)
{
GPIO_SetupPinMux(i,cpu_sel,3);
}
//setup async mode for Data pins
for (i=53; i<=68;i++)
{
GPIO_SetupPinOptions(i,0,0x31);
}
}