Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of ele350 by
Revision 7:04e1552c7c95, committed 2016-10-18
- 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 {