aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/pwm_lld.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-11-02 16:38:13 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-11-02 16:38:13 +0000
commit69f211ae2c3f7a42d65e9f3bdb4e192016a53d94 (patch)
tree2241b536eb349dd81abb7ce17781980df72dca94 /os/hal/templates/pwm_lld.c
parenta94bfc5f713ee3b7659c53458b61f40ff39dc660 (diff)
downloadChibiOS-69f211ae2c3f7a42d65e9f3bdb4e192016a53d94.tar.gz
ChibiOS-69f211ae2c3f7a42d65e9f3bdb4e192016a53d94.tar.bz2
ChibiOS-69f211ae2c3f7a42d65e9f3bdb4e192016a53d94.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7462 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/templates/pwm_lld.c')
-rw-r--r--os/hal/templates/pwm_lld.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/os/hal/templates/pwm_lld.c b/os/hal/templates/pwm_lld.c
index c33fc0d4b..2c855dfe2 100644
--- a/os/hal/templates/pwm_lld.c
+++ b/os/hal/templates/pwm_lld.c
@@ -15,8 +15,8 @@
*/
/**
- * @file PLATFORM/pwm_lld.c
- * @brief PLATFORM PWM subsystem low level driver header.
+ * @file pwm_lld.c
+ * @brief PLATFORM PWM subsystem low level driver source.
*
* @addtogroup PWM
* @{
@@ -108,6 +108,7 @@ void pwm_lld_stop(PWMDriver *pwmp) {
}
#endif
+ }
}
/**
@@ -128,6 +129,8 @@ void pwm_lld_enable_channel(PWMDriver *pwmp,
pwmcnt_t width) {
(void)pwmp;
+ (void)channel;
+ (void)width;
}
/**
@@ -145,6 +148,7 @@ void pwm_lld_enable_channel(PWMDriver *pwmp,
void pwm_lld_disable_channel(PWMDriver *pwmp, pwmchannel_t channel) {
(void)pwmp;
+ (void)channel;
}
/**