Tool/software:
Hi i am using cc2340 development board for developing a custom service of 128 bit , i have made all the changes required to do.
but in my mobile app i am seeing F0000 XXXX 0451 b000 000000000000 as the service uuid. and xxxx are only the bytes which are from my custom uuid, as i searched on net it shows that F0000 XXXX 0451 b000 000000000000 is the base 128 bit ti uuid.
so i am not getting why this is happening as i have created my .c and .h file where i have declared it as 128 bit , and i have also taken reference from ti site- https://software-dl.ti.com/lprf/simplelink_academy/modules/ble_01_custom_profile/ble_01_custom_profile.html#example-service-generator for developing 128 bit uuid and i have selected 128 bit for uuid generator as for service and characteristic still it is taking
/// @brief TI Base 128-bit UUID: F000XXXX-0451-4000-B000-000000000000
#define TI_BASE_UUID_128( uuid ) 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xB0, \
0x00, 0x40, 0x51, 0x04, LO_UINT16( uuid ), HI_UINT16( uuid ), 0x00, 0xF0
this as base uuid from bcomdef.h file
although i have changed there also for checking it is still taking that value
can you suggest me how to change to my custom uuid.
i am using sdk 8_10_00_23 eng sdk and using example code basic ble as peripheral.
Thanks