Hi @GLantzTCore ,
Thanks for your interest in NXP MIMXRT series!
We recommend that you check the code in pinmux.c to prevent previous code from multiplexing the JTag pins to something else:
And, it is better to try with JLink's JTag mode first, because this is the one we tested without problems. i-Jet has not tested it.
IOMUXC_SetPinMux(
IOMUXC_GPIO_LPSR_10_JTAG_MUX_TRSTB,
0U);
IOMUXC_SetPinMux(
IOMUXC_GPIO_LPSR_11_JTAG_MUX_TDO,
0U);
IOMUXC_SetPinMux(
IOMUXC_GPIO_LPSR_12_JTAG_MUX_TDI,
0U);
IOMUXC_SetPinMux(
IOMUXC_GPIO_LPSR_13_JTAG_MUX_MOD,
0U);
IOMUXC_SetPinMux(
IOMUXC_GPIO_LPSR_14_JTAG_MUX_TCK,
0U);
IOMUXC_SetPinMux(
IOMUXC_GPIO_LPSR_15_JTAG_MUX_TMS,
0U);
Best regards,
Gavin