Tool/software: Code Composer Studio
Hi,
I have successfully sent & received overt the UART6 but i have a problem that the UARTCharPutNonBlocking API only transmit 16 bytes, so how can i solve this?
Here copy for the send function
unsigned char DataTransmit[257];
void UARTSend(uint32_t dataLength)
{
for (i = 0; i < dataLength; i++)
{
// Write the next character to the UART.
UARTCharPutNonBlocking(UART6_BASE, DataTransmit[i]);
}
}
BR,
Hani