STMF302R8 Motor Controller Project

Dependencies:   BLDCmotorDriver RateLimiter mbed

Files at this revision

API Documentation at this revision

Comitter:
vicyap
Date:
Mon Mar 07 21:10:53 2016 +0000
Commit message:
Starter Blinky program; 2 second period, 50% duty cycle on LED1

Changed in this revision

BLDCmotorDriver.lib Show annotated file Show diff for this revision Revisions of this file
RateLimiter.lib 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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/BLDCmotorDriver.lib	Mon Mar 07 21:10:53 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/teams/TVZ-Mechatronics-Team/code/BLDCmotorDriver/#a4b4a8e3f2a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/RateLimiter.lib	Mon Mar 07 21:10:53 2016 +0000
@@ -0,0 +1,1 @@
+http://developer.mbed.org/teams/TVZ-Mechatronics-Team/code/RateLimiter/#d735360f91f9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Mar 07 21:10:53 2016 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+
+DigitalOut led (LED1);
+
+int main()
+{
+
+    while (1)
+    {
+        led = 1;
+        wait(1.0);
+        led = 0;
+        wait(1.0);
+    }
+    
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Mar 07 21:10:53 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/87f2f5183dfb
\ No newline at end of file