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.

CC2650: Custom PCB-CC2650 not advertising

Part Number: CC2650

Hello,

we have designed our Custom PCB for CC2650.

BLE SDK 2_02_07_06

CCS7.4

Compiler TI v5.2.6

We had raised ticket last time for help regarding this. https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1102446/cc2650-custom-cc2650-board-bluetooth-not-advertising/4119620?tisearch=e2e-sitesearch&keymatch=%20user%3A508658#4119620.

So we submitted design at https://www.ti.com/tool/SIMPLELINK-2-4GHZ-DESIGN-REVIEWS .

Our PCB design is reviewed by TI team. (By BLE HW Applications engineer Texas Instruments).

We have done all the necessary changes in our PCB as suggested by reviewing team.

NOW, The problem is our new PCB is also not visible when searched as Bluetooth from Android apps like BLE SCANNER or  LIGHTBLUE.

"Project Zero" code is used for testing.

I am debugging with Log_info0("xxxxxxx");

MCU is not executing API function

"GAPRole_SetParameter(GAPROLE_SCAN_RSP_DATA, sizeof(scanRspData), scanRspData);"

I have attached images of debug session.

static ICall_Errno ICall_primService(ICall_FuncArgsHdr *args)
{
  if (args->func >= sizeof(ICall_primSvcFuncs)/sizeof(ICall_primSvcFuncs[0]))
  {
    return ICALL_ERRNO_INVALID_FUNCTION;
  }
  return ICall_primSvcFuncs[args->func].func(args);
}

static ICall_Errno ICall_primService(ICall_FuncArgsHdr *args) 

This function returns  

 ICALL_ERRNO_INVALID_FUNCTION;

then again control comes back to the start point of code execution

static void ProjectZero_init(void)

where my debuge consol again prints the

Log_info0("Initializing the user task, hardware, BLE stack and services.");

Please guide me...