Hi to all,
i am using USART0 of LPC54606J512BD100, All configrations are working properly when i put the same code to the developmemnt board but when i suppose to burn same code into my hardware card USART0 Tx not working, i don know why ?
void USART_WRITE(unsigned char *string)
{
while(*string!='\0') // Loop run till value not equal to NULL Character
{
USART0->FIFOWR = *string; // Data Write into FIFO Write Register
string++; // Increment in i variable for next character
}
}
while (Tx_NOTFULL & USART0->FIFOSTAT)
{
USART_WRITE(S_string); // USART_WRITE Function Call
}
my core clock is 180MHz
please tell me why Tx function is not working?