Microbug / nRF51822

Fork of nRF51822 by Nordic Semiconductor

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Wed May 13 08:49:35 2015 +0100
Parent:
168:a24112aa18a1
Child:
170:d886f281ead7
Commit message:
Synchronized with git rev 7d0cc169
Author: Rohit Grover
shorten names for *scanning* APIs to *scan*.

Changed in this revision

nRF51Gap.h Show annotated file Show diff for this revision Revisions of this file
--- a/nRF51Gap.h	Wed May 13 08:49:35 2015 +0100
+++ b/nRF51Gap.h	Wed May 13 08:49:35 2015 +0100
@@ -77,7 +77,7 @@
         ble_radio_notification_init(NRF_APP_PRIORITY_HIGH, NRF_RADIO_NOTIFICATION_DISTANCE_800US, onRadioNotification);
     }
 
-    virtual ble_error_t startScanning(const GapScanningParams &scanningParams, AdvertisementReportCallback_t callback) {
+    virtual ble_error_t startScan(const GapScanningParams &scanningParams, AdvertisementReportCallback_t callback) {
         if ((onAdvertisementReport = callback) != NULL) {
 
             ble_gap_scan_params_t scanParams = {
@@ -97,7 +97,7 @@
         return BLE_ERROR_NONE;
     }
 
-    virtual ble_error_t stopScanning(void) {
+    virtual ble_error_t stopScan(void) {
         if (sd_ble_gap_scan_stop() == NRF_SUCCESS) {
             return BLE_ERROR_NONE;
         }