I checked on Putty UART-6 working :--
I checked on Putty UART-6 working :--
/* initialize the UART as the console serial communication port */
Lpuart_Uart_Ip_Init(UART_LPUART_INTERNAL_CHANNEL, &Lpuart_Uart_Ip_xHwConfigPB_6_BOARD_INITPERIPHERALS);
IntCtrl_Ip_InstallHandler(LPUART6_IRQn, LPUART_UART_IP_6_IRQHandler, NULL_PTR);
IntCtrl_Ip_EnableIrq(LPUART6_IRQn);
/* Uart_AsyncSend transmit data */
lpuartStatus = Lpuart_Uart_Ip_AsyncSend(UART_LPUART_INTERNAL_CHANNEL, (const uint8 *)WELCOME_MSG_2, strlen(WELCOME_MSG_2));
if (LPUART_UART_IP_STATUS_SUCCESS != lpuartStatus)
{
///return FALSE;
while(1)
{
__asm volatile ("nop");
}
}

So issue seems to be with freeMASTER.
I set the PORT address of UART correctly in file --> freemaster_cfg.h.
Please suggest what could be the issue ?
Regards,
Dinesh