Maxim Integrated Bluetooth LE Library
Dependents: BLE_Thermometer MAXWSNENV_demo
Revision 5:5b87f64ce81e, committed 2016-10-06
- 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;