HI , ALL
i added a event in the function 'on_ble_evt' like followings:
case BLE_GAP_EVT_ADV_REPORT:
printf("Start Advertising\r\n");
break;
At first i think that when a device start advertising ,then my device will print this string on my com port tool(i had init the uart fifo function , and it's nothing wrong from my test.).
But when i load my programme in my board and nothing print.
so i wanna know that when can i get the report event like BLE_GAP_EVT_ADV_REPORT, BLE_GAP_EVT_SCAN_REQ_REPORT and so on.
P.S: The descrption in the sdk document is too simple to solve my problem.