that helps but am running into problems
this is my code from examples in the pdf 73.6.5 UART Transfers
uint8_t sourceBuff[4] = "asdf"; // sourceBuff can be filled out with desired data
uint8_t readBuffer[10] = {0}; // readBuffer gets filled with UART_DRV_ReceiveData function
uint32_t byteCount = sizeof(sourceBuff);
uint32_t rxRemainingSize = sizeof(readBuffer);
uint8_t* psourceBuff = &sourceBuff;
uint8_t tx_size = sizeof(data);
UART_DRV_SendDataBlocking(1, psourceBuff, byteCount, 1);
psourceBuff++;
The output is
aaaaaaaaaaaaaaaaaaaaaaaaaaaassssssssssssssssssssssssddddddddddddddddddddddddffffffffffffffffffffffff
when do do not increment the psourceBuff I get
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
8 characters at a time.
Is there something else I am supposed to do with this?