timer example printf

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
kaushalpkk
Date:
Thu Jul 12 17:28:08 2018 +0000
Commit message:
commit

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
diff -r 000000000000 -r 825c779a8251 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Jul 12 17:28:08 2018 +0000
@@ -0,0 +1,13 @@
+#include "mbed.h"
+ 
+Serial pc(USBTX, USBRX);
+Timer t;
+ 
+int main() {
+    pc.baud(9600);
+    t.start();
+    printf("123456789\n123456789\n123456789\n123456789\n123456789\n");
+    t.stop();
+    printf("The time taken was %d uS\n", t.read_us());
+}
+
diff -r 000000000000 -r 825c779a8251 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Jul 12 17:28:08 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/a7c7b631e539
\ No newline at end of file