yajuan yue / Mbed 2 deprecated ele350

Dependencies:   mbed

Fork of ele350 by JIAWEI ZHANG

Files at this revision

API Documentation at this revision

Comitter:
yyue
Date:
Tue Oct 18 17:28:08 2016 +0000
Parent:
6:f804bb3faa26
Commit message:
created

Changed in this revision

soft_pwm.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/soft_pwm.cpp	Thu Nov 05 13:11:29 2015 +0000
+++ b/soft_pwm.cpp	Tue Oct 18 17:28:08 2016 +0000
@@ -33,7 +33,9 @@
 {
     float onPhaseDuration = this->dutyCycle * this->period;
     float currentTime = this->timer.read();
-    
+    if (currentTime > onPhaseDuration){
+        this->timer.start();
+        }
     if (currentTime < onPhaseDuration){
         return true;
     }else {