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.cpp	Tue Dec 10 07:32:12 2013 +0000
@@ -0,0 +1,31 @@
+#include <stdio.h>
+#include <string.h>
+
+#include "GapAdvertisingParams.h"
+
+/**************************************************************************/
+/*!
+    @brief  Creates a new GapAdvertisingParams
+
+    @section EXAMPLE
+
+    @code
+
+    @endcode
+*/
+/**************************************************************************/
+GapAdvertisingParams::GapAdvertisingParams(uint8_t advType, uint16_t interval, uint16_t timeout)
+{
+    _advType = advType;
+    _interval = interval;
+    _timeout = timeout;
+}
+
+/**************************************************************************/
+/*!
+    Destructor
+*/
+/**************************************************************************/
+GapAdvertisingParams::~GapAdvertisingParams(void)
+{
+}