Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions mbed-drivers/PwmOut.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ class PwmOut {
pwmout_init(&_pwm, pin);
}

/** Free PwmOut and related resources
*/
~PwmOut() {
pwmout_free(&_pwm);
}

/** Set the ouput duty-cycle, specified as a percentage (float)
*
* @param value A floating-point value representing the output duty-cycle,
Expand Down