David Ross / Mbed 2 deprecated Lab3_test_MCUXPRESSO

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
daveross
Date:
Sun Sep 27 16:23:28 2020 +0000
Parent:
0:e51b311658fd
Commit message:
Test of MCUXPRESSO

Changed in this revision

Test_BLINKY.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
test.cpp Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Test_BLINKY.cpp	Sun Sep 27 16:23:28 2020 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+DigitalOut red_led(LED1);
+
+int main(void)
+{
+   red_led=1;
+   
+   for(;;)
+   {
+      red_led=0;   
+      wait_ms(500); // wait .5 seconds
+      red_led=1;   
+      wait_ms(500); // wait .5 seconds
+   }
+}
\ No newline at end of file
--- a/mbed.bld	Mon Sep 21 15:12:00 2020 +0000
+++ b/mbed.bld	Sun Sep 27 16:23:28 2020 +0000
@@ -1,1 +1,1 @@
-https://os.mbed.com/users/mbed_official/code/mbed/builds/3a7713b1edbc
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/04dd9b1680ae
\ No newline at end of file
--- a/test.cpp	Mon Sep 21 15:12:00 2020 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-#include "mbed.h"
-int main(void)
-{
-    printf("Hello World\n");
-    getchar();    
-}
\ No newline at end of file