Part Number:CC2640R2F
Tool/software: Code Composer Studio
Hello,
I am using Code composer studio V7.
I use ble5 _ app_ble _ server program using the CC2640R2 LaunchXl board.
I am making the UART program.
The function I use is:
void SPPBLEServer_enqueueUARTMsg(uint8_t event, uint8_t *data, uint8_t len).
Here the meaximum length is 20 as I am not getting 20bytes of data at a time.
How to change the lenth value to get more buffer size.
My total data is 27 bytes and I want to compare the 25th byte and first byte.
if(( pMsg->pData[0] == 0xFE) ) ---get the answeer.
if((data[20] == 0xFD)) ---not working.............So i need to increase the length.
Please help me.