High level Bluetooth Low Energy API and radio abstraction layer

Dependencies:   nRF51822

Dependents:   LinkNode_LIS3DH

Fork of BLE_API by Bluetooth Low Energy

Revision:
2:ffc5216bd2cc
Child:
4:50a31ff5f974
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GapAdvertisingParams.h	Tue Dec 10 07:32:12 2013 +0000
@@ -0,0 +1,18 @@
+#ifndef __GAP_ADVERTISING_PARAMS_H__
+#define __GAP_ADVERTISING_PARAMS_H__
+
+#include "blecommon.h"
+
+class GapAdvertisingParams
+{
+public:
+    GapAdvertisingParams(uint8_t advType, uint16_t interval, uint16_t timeout);
+    virtual ~GapAdvertisingParams(void);
+
+private:
+    uint8_t  _advType;
+    uint16_t _interval;
+    uint16_t _timeout;
+};
+
+#endif