by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
robt
Date:
Mon Oct 15 21:23:26 2012 +0000
Commit message:
by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"

Changed in this revision

header.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
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 16b94e5005da header.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/header.h	Mon Oct 15 21:23:26 2012 +0000
@@ -0,0 +1,9 @@
+/* Program Example 6.4: Template for .h header file
+                                                              */
+
+#ifndef VARIABLE_H    // if VARIABLE_H has not previously been defined
+#define VARIABLE_H    // define it now
+
+// header declarations here…
+
+#endif               // end of the if directive 
diff -r 000000000000 -r 16b94e5005da main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Oct 15 21:23:26 2012 +0000
@@ -0,0 +1,5 @@
+#include "header.h"
+
+main(){
+
+}
\ No newline at end of file
diff -r 000000000000 -r 16b94e5005da mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Oct 15 21:23:26 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/cd19af002ccc
\ No newline at end of file