system, descripcion y ejemplo
Revision 0:9b20d4530075, committed 2012-04-03
- Comitter:
- sherckuith
- Date:
- Tue Apr 03 21:06:31 2012 +0000
- Commit message:
- system, descripcion y ejemplo
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 Tue Apr 03 21:06:31 2012 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+/* system example : DIR */
+#include <stdio.h>
+#include <stdlib.h>
+
+int main ()
+{
+ int i;
+ printf ("Checking if processor is available...");
+ if (system(NULL)) puts ("Ok");
+ else exit (1);
+ printf ("Executing command DIR...\n");
+ i=system ("dir");
+ printf ("The value returned was: %d.\n",i);
+ return 0;
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue Apr 03 21:06:31 2012 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/737756e0b479