Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
Revision 4:534c2146e5ec, committed 2014-05-23
- Comitter:
- Rohit Grover
- Date:
- Fri May 23 09:01:52 2014 +0100
- Parent:
- 3:791d672cbbec
- Child:
- 5:b11766b636aa
- Commit message:
- nRF51822n now has a different base class; it extends BLEDeviceInstanceBase
Changed in this revision
| nRF51822n.cpp | Show annotated file Show diff for this revision Revisions of this file |
| nRF51822n.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/nRF51822n.cpp Thu May 22 15:03:55 2014 +0100
+++ b/nRF51822n.cpp Fri May 23 09:01:52 2014 +0100
@@ -19,6 +19,20 @@
#include "btle/btle.h"
+/**
+ * The singleton which represents the nRF51822 transport for the BLEDevice.
+ */
+static nRF51822n deviceInstance;
+
+/**
+ * BLE-API requires an implementation of the following function in order to
+ * obtain its transport handle.
+ */
+BLEDeviceInstanceBase *
+createBLEDeviceInstance(void) {
+ return (&deviceInstance);
+}
+
/**************************************************************************/
/*!
@brief Constructor
--- a/nRF51822n.h Thu May 22 15:03:55 2014 +0100
+++ b/nRF51822n.h Fri May 23 09:01:52 2014 +0100
@@ -34,7 +34,7 @@
*/
/**************************************************************************/
-class nRF51822n : public BLEDevice
+class nRF51822n : public BLEDeviceInstanceBase
{
public:
nRF51822n(void);
