aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32/pwm_lld.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-21 21:31:35 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-21 21:31:35 +0000
commit955425572d170dc100034ce991911854bf600a30 (patch)
tree29cdb46b02e87de9cad84f3674df6da851dfb9cb /os/hal/platforms/STM32/pwm_lld.h
parent2018975c3ebca410dd2f8b9a35fe510f4996fa77 (diff)
downloadChibiOS-955425572d170dc100034ce991911854bf600a30.tar.gz
ChibiOS-955425572d170dc100034ce991911854bf600a30.tar.bz2
ChibiOS-955425572d170dc100034ce991911854bf600a30.zip
Had to go back...
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2416 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/pwm_lld.h')
-rw-r--r--os/hal/platforms/STM32/pwm_lld.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/os/hal/platforms/STM32/pwm_lld.h b/os/hal/platforms/STM32/pwm_lld.h
index 4c3b99e4d..194e60b48 100644
--- a/os/hal/platforms/STM32/pwm_lld.h
+++ b/os/hal/platforms/STM32/pwm_lld.h
@@ -344,9 +344,10 @@ extern "C" {
void pwm_lld_init(void);
void pwm_lld_start(PWMDriver *pwmp);
void pwm_lld_stop(PWMDriver *pwmp);
- void pwm_lld_set_channel(PWMDriver *pwmp,
- pwmchannel_t channel,
- pwmcnt_t width);
+ void pwm_lld_enable_channel(PWMDriver *pwmp,
+ pwmchannel_t channel,
+ pwmcnt_t width);
+ void pwm_lld_disable_channel(PWMDriver *pwmp, pwmchannel_t channel);
#ifdef __cplusplus
}
#endif