We want to have a broadcast name “SAIC-Motor” but only displays 9 char as “SAIC-Mot”
We have change the length to 11 as below, is this a bug or other problem?
static const gapAdStructure_t advScanStruct[3] = {
{
.length = NumberOfElements(adData0) + 1,
.adType = gAdFlags_c,
.aData = (uint8_t *)adData0
},
{
.length = NumberOfElements(uuid_service_wireless_uart) + 1,
.adType = gAdComplete128bitServiceList_c,
.aData = (uint8_t *)uuid_service_wireless_uart
},
{
.adType = gAdShortenedLocalName_c,
.length = 11,
.aData = (uint8_t*)" SAIC-Motor "
}
};