Maxim Integrated Bluetooth LE Library

Dependents:   BLE_Thermometer MAXWSNENV_demo

Files at this revision

API Documentation at this revision

Comitter:
enginerd
Date:
Thu Oct 06 22:02:31 2016 +0000
Parent:
4:07f30e7452c0
Commit message:
Added new required method.

Changed in this revision

MaximBLE.cpp Show annotated file Show diff for this revision Revisions of this file
MaximBLE.h Show annotated file Show diff for this revision Revisions of this file
--- a/MaximBLE.cpp	Thu Aug 18 16:01:15 2016 -0500
+++ b/MaximBLE.cpp	Thu Oct 06 22:02:31 2016 +0000
@@ -299,6 +299,11 @@
     }
 }
 
+void MaximBLE::processEvents()
+{
+    callDispatcher();
+}
+
 void MaximBLE::timeoutCallback(void)
 {
     // do nothing. just an interrupt for wake up.
--- a/MaximBLE.h	Thu Aug 18 16:01:15 2016 -0500
+++ b/MaximBLE.h	Thu Oct 06 22:02:31 2016 +0000
@@ -79,6 +79,7 @@
     };
 
     virtual void waitForEvent(void);
+    virtual void processEvents(void);
 
 private:
     bool              initialized;