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 mbed-dev by
Diff: drivers/PwmOut.h
- Revision:
- 167:e84263d55307
- Parent:
- 160:d5399cc887bb
- Child:
- 175:af195413fb11
diff -r c97ed07ec1a8 -r e84263d55307 drivers/PwmOut.h --- a/drivers/PwmOut.h Thu Jun 08 15:02:37 2017 +0100 +++ b/drivers/PwmOut.h Wed Jun 21 17:46:44 2017 +0100 @@ -18,17 +18,16 @@ #include "platform/platform.h" -#if DEVICE_PWMOUT +#if defined (DEVICE_PWMOUT) || defined(DOXYGEN_ONLY) #include "hal/pwmout_api.h" #include "platform/mbed_critical.h" namespace mbed { /** \addtogroup drivers */ -/** @{*/ /** A pulse-width modulation digital output * - * @Note Synchronization level: Interrupt safe + * @note Synchronization level: Interrupt safe * * Example * @code @@ -47,13 +46,7 @@ * } * } * @endcode - * - * @note - * On the LPC1768 and LPC2368, the PWMs all share the same - * period - if you change the period for one, you change it for all. - * Although routines that change the period maintain the duty cycle - * for its PWM, all other PWMs will require their duty cycle to be - * refreshed. + * @ingroup drivers */ class PwmOut { @@ -90,7 +83,7 @@ * 0.0f (representing on 0%) and 1.0f (representing on 100%). * * @note - * This value may not match exactly the value set by a previous <write>. + * This value may not match exactly the value set by a previous write(). */ float read() { core_util_critical_section_enter(); @@ -101,6 +94,7 @@ /** Set the PWM period, specified in seconds (float), keeping the duty cycle the same. * + * @param seconds Change the period of a PWM signal in seconds (float) without modifying the duty cycle * @note * The resolution is currently in microseconds; periods smaller than this * will be set to zero. @@ -112,6 +106,7 @@ } /** Set the PWM period, specified in milli-seconds (int), keeping the duty cycle the same. + * @param ms Change the period of a PWM signal in milli-seconds without modifying the duty cycle */ void period_ms(int ms) { core_util_critical_section_enter(); @@ -120,6 +115,7 @@ } /** Set the PWM period, specified in micro-seconds (int), keeping the duty cycle the same. + * @param us Change the period of a PWM signal in micro-seconds without modifying the duty cycle */ void period_us(int us) { core_util_critical_section_enter(); @@ -128,6 +124,7 @@ } /** Set the PWM pulsewidth, specified in seconds (float), keeping the period the same. + * @param seconds Change the pulse width of a PWM signal specified in seconds (float) */ void pulsewidth(float seconds) { core_util_critical_section_enter(); @@ -136,6 +133,7 @@ } /** Set the PWM pulsewidth, specified in milli-seconds (int), keeping the period the same. + * @param ms Change the pulse width of a PWM signal specified in milli-seconds */ void pulsewidth_ms(int ms) { core_util_critical_section_enter(); @@ -144,6 +142,7 @@ } /** Set the PWM pulsewidth, specified in micro-seconds (int), keeping the period the same. + * @param us Change the pulse width of a PWM signal specified in micro-seconds */ void pulsewidth_us(int us) { core_util_critical_section_enter(); @@ -152,6 +151,7 @@ } /** A operator shorthand for write() + * \sa PwmOut::write() */ PwmOut& operator= (float value) { // Underlying call is thread safe @@ -159,6 +159,9 @@ return *this; } + /** A operator shorthand for write() + * \sa PwmOut::write() + */ PwmOut& operator= (PwmOut& rhs) { // Underlying call is thread safe write(rhs.read()); @@ -166,6 +169,7 @@ } /** An operator shorthand for read() + * \sa PwmOut::read() */ operator float() { // Underlying call is thread safe @@ -181,5 +185,3 @@ #endif #endif - -/** @}*/