This library includes use cases which can be used for replicating BLE use caes.

Files at this revision

API Documentation at this revision

Comitter:
hemddabral
Date:
Thu Sep 25 12:54:44 2014 +0000
Parent:
2:c6894656d2f1
Commit message:
interrupt experiment added

Changed in this revision

Interrupt.cpp Show annotated file Show diff for this revision Revisions of this file
TestScenarios.h Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r c6894656d2f1 -r 9e23792d3d5a Interrupt.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Interrupt.cpp	Thu Sep 25 12:54:44 2014 +0000
@@ -0,0 +1,19 @@
+#include "mbed.h"
+
+DigitalOut led1(LED2);
+
+void cb1(void) { 
+    led2 = 1;
+    wait(3);
+    led2 = 0;
+}
+
+void setLED() { 
+
+    while(1) {
+        led1 = 1;
+        wait(0.05);
+        led1 = 0;
+        wait(0.95);
+    }
+}
\ No newline at end of file
diff -r c6894656d2f1 -r 9e23792d3d5a TestScenarios.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TestScenarios.h	Thu Sep 25 12:54:44 2014 +0000
@@ -0,0 +1,6 @@
+#ifndef __TEST_SCENARIOS_H__
+#define __TEST_SCENARIOS_H__
+
+void setLED(); 
+
+#endif // __TEST_SCENARIOS_H__
\ No newline at end of file
diff -r c6894656d2f1 -r 9e23792d3d5a main.cpp
--- a/main.cpp	Thu Sep 25 11:55:16 2014 +0000
+++ b/main.cpp	Thu Sep 25 12:54:44 2014 +0000
@@ -1,7 +1,9 @@
 #include "UseCases.h"
+#include "TestScenarios.h"
 
 int main() 
 {   
-    multipleServiceUseCase();
+    //multipleServiceUseCase();
+    setLED();
 }