diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-11-28 12:21:49 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-11-28 12:21:49 +0000 |
commit | 718f2d0cd19fa854b859fc5390930c2c5c3c5216 (patch) | |
tree | 54bb5a25ff9de04b34383dfa0bfdb6ce8da9c252 /os/hal | |
parent | 72903490631212c4aff9c7641c8095e71cab2a79 (diff) | |
download | ChibiOS-718f2d0cd19fa854b859fc5390930c2c5c3c5216.tar.gz ChibiOS-718f2d0cd19fa854b859fc5390930c2c5c3c5216.tar.bz2 ChibiOS-718f2d0cd19fa854b859fc5390930c2c5c3c5216.zip |
Fixed bug 3121246.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2447 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/STM32/pwm_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/pwm_lld.c b/os/hal/platforms/STM32/pwm_lld.c index 56273b5a6..8c8f56920 100644 --- a/os/hal/platforms/STM32/pwm_lld.c +++ b/os/hal/platforms/STM32/pwm_lld.c @@ -535,7 +535,7 @@ void pwm_lld_enable_channel(PWMDriver *pwmp, void pwm_lld_disable_channel(PWMDriver *pwmp, pwmchannel_t channel) {
*(&pwmp->pd_tim->CCR1 + (channel * 2)) = 0;
- pwmp->pd_tim->DIER = ~(2 << channel);
+ pwmp->pd_tim->DIER &= ~(2 << channel);
pwmp->pd_enabled_channels &= ~(1 << channel);
}
|