This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

J721EXSOMXEVM: UART port change on Ethernet Switch

Part Number: J721EXSOMXEVM

Hello,

Recently I moved to SDK 7.1 and followed the instructions mentioned in the original question for changing UART2 to UART7 on SDK 7.1. However, I don't see any log on UART7. It works on SDK 7.0 but I couldn't make it work on SDK 7.1. 

Some of the things I observed are.

Changing UART instance to "7U" doesn't make any difference. "make ethfw_all" doesn't compile this code. Whereas on SDK 7.0 making the same change does take effect.

#if defined(SOC_J7200)
#define ENET_UTILS_MCU2_0_UART_INSTANCE (3U)
#else
#define ENET_UTILS_MCU2_0_UART_INSTANCE (7U)
#endif

Also I added "TISCI_DEV_UART7" in this code with no luck.

void EnetBoard_initEthFw(void)
{
    Board_initCfg boardCfg = 0U;
    Board_STATUS status;
    uint32_t i, moduleCnt, appFlags;
    uint32_t clkModuleId[] = { TISCI_DEV_DDR0,
                               TISCI_DEV_TIMER12,
                               TISCI_DEV_TIMER13,
                               TISCI_DEV_UART7, };

Any help would be great here. 

 Thanks,

Satish