Hi,
IMX RT 1064 evk schematic
ENET_INT connected to JTAG_TDO
ENET_RST connected to JTAG_TDI
If we change these two pins value how jtag working without disconnecting from debugger ?
This code i took from tcpecho example
GPIO_PinInit(GPIO1, 9, &gpio_config);
GPIO_PinInit(GPIO1, 10, &gpio_config);
/* pull up the ENET_INT before RESET. */
GPIO_WritePinOutput(GPIO1, 10, 1);
GPIO_WritePinOutput(GPIO1, 9, 0);
delay();
GPIO_WritePinOutput(GPIO1, 9, 1);
Can you give code example for handling gpio (For ENET_INT please use the GPIO) ?
Thanks & Regards
Vasu