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.
Dependencies: mbed
Revision 0:6643d1c94bd0, committed 2015-10-15
- Comitter:
- fkgjh
- Date:
- Thu Oct 15 10:53:41 2015 +0000
- Commit message:
- Interrupt;
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Oct 15 10:53:41 2015 +0000
@@ -0,0 +1,31 @@
+#include "mbed.h"
+
+InterruptIn SW7(PB_3);
+InterruptIn SW6(PA_10);
+
+Timer timer;
+static double tidSek;
+
+void startKlokke()
+{
+ timer.reset();
+ timer.start();
+}
+
+void stopKlokke()
+{
+ timer.stop();
+ tidSek=timer.read_ms()/1000.0;
+ printf("tid %.3f sek\r\n", tidSek);
+}
+
+int main()
+{
+ SW7.fall(&startKlokke);
+ SW6.fall(&stopKlokke);
+
+ while (true)
+ {
+ wait_ms(200);
+ }
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Thu Oct 15 10:53:41 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/ba1f97679dad \ No newline at end of file