Minor temporary patch to allow DFU packet callback

Fork of BLE_API by Bluetooth Low Energy

Revision:
239:58642869879c
Parent:
233:4d570d99b8cb
Child:
240:20df772f2374
--- a/services/URIBeaconConfigService.h	Mon Dec 08 20:24:12 2014 +0000
+++ b/services/URIBeaconConfigService.h	Mon Dec 08 20:43:06 2014 +0000
@@ -149,7 +149,10 @@
     }
 
     /**
-     * Update the txPowerLevels table.
+     * @breif Update the txPowerLevels table.
+     * 
+     * @param[in] powerLevelsIn
+     *              Array of power levels
      */
     void setTxPowerLevels(const int8_t powerLevelsIn[NUM_POWER_MODES]) {
         memcpy(powerLevels, powerLevelsIn, sizeof(powerLevels));
@@ -158,7 +161,10 @@
     }
 
     /**
-     * Set the effective power mode from one of the values in the powerLevels tables.
+     * @breif Set the effective power mode from one of the values in the powerLevels tables.
+     *
+     * @param[in] mode
+     *              Set the TX Power Mode.
      */
     void setTxPowerMode(TXPowerModes_t mode) {
         txPowerMode = mode;
@@ -170,6 +176,9 @@
      * The period in milliseconds that a UriBeacon packet is transmitted.
      *
      * @Note: A value of zero disables UriBeacon transmissions.
+     *
+     * @param beaconPeriodIn
+     *              Beacon advertising period in milliseconds
      */
     void setBeaconPeriod(uint16_t beaconPeriodIn) {
         beaconPeriod = beaconPeriodIn;