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.

RTOS/cc2640: For NPI

Part Number: CC2640

Tool/software: TI-RTOS

Hi All

Chip-set  :CC2640F128(5x5)

BLE SDK: ble_sdk_2_02_01_18

CCSV7

I have above environment. 

This below  is my main.c code

PIN_init(BoardGpioInitTable);

// Enable iCache prefetching
VIMSConfigure(VIMS_BASE, TRUE, TRUE);

// Enable cache
VIMSModeSet(VIMS_BASE, VIMS_MODE_ENABLED);

/* Initialize ICall module */
ICall_init();

/* Start tasks of external images - Priority 5 */
ICall_createRemoteTasks();

/* Kick off profile - Priority 3 */
GAPRole_createTask();

/* Start Application - Priority 1*/
SimpleBLEPeripheral_createTask();

/* Kick off profile - Priority 2 */
NPITask_createTask(ICALL_SERVICE_CLASS_BLE);
/* enable interrupts and start SYS/BIOS */
BIOS_start();

i add only "NPITask_createTask(ICALL_SERVICE_CLASS_BLE);"  in SimpleBLEPeripheral project.

But what happen that BLE is didn't discover in mobile app. why it is scenario happen.

How i solve this. please give me solution as soon as possible.

 thanks