This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2650STK - SimpleBLEPeripheral - Data Not Send Out When First Byte Data Is 0x80

Other Parts Discussed in Thread: CC2650

Hi Everyone,

I am using CC2650, loaded with SimpleBLEPeripheral example. Reading the default value for characteristic 5 is OK, I can get back the string 0x0102030405.

But when I change the initialise value to 0x8002030405 in SimpleBLEPeripheral_init, I no longer able to read the value (The android app is not display with any values).

uint8_t charValue5[SIMPLEPROFILE_CHAR5_LEN] = { 0x80, 2, 3, 4, 5 };

I actually this discovered this when working on characteristic 1, then test with characteristic 5 and same result.