diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-04-01 09:13:04 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-04-01 09:13:04 +0000 |
commit | f038bffdb512f67d4f90e8cba499713458eebd67 (patch) | |
tree | 89bdebf9eecc81442ccca5db2e1a47da20deb323 /testhal/STM32L1xx/PWM-ICU/main.c | |
parent | 148eeef2e7ea57ee06ad8776417dca48c2d3ff6d (diff) | |
download | ChibiOS-f038bffdb512f67d4f90e8cba499713458eebd67.tar.gz ChibiOS-f038bffdb512f67d4f90e8cba499713458eebd67.tar.bz2 ChibiOS-f038bffdb512f67d4f90e8cba499713458eebd67.zip |
Fixed bug 3510812.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4066 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32L1xx/PWM-ICU/main.c')
-rw-r--r-- | testhal/STM32L1xx/PWM-ICU/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32L1xx/PWM-ICU/main.c b/testhal/STM32L1xx/PWM-ICU/main.c index 35044663c..c4fddb65f 100644 --- a/testhal/STM32L1xx/PWM-ICU/main.c +++ b/testhal/STM32L1xx/PWM-ICU/main.c @@ -34,7 +34,7 @@ static void pwmc1cb(PWMDriver *pwmp) { }
static PWMConfig pwmcfg = {
- 10000, /* 10KHz PWM clock frequency. */
+ 10000, /* 10kHz PWM clock frequency. */
10000, /* Initial PWM period 1S. */
pwmpcb,
{
@@ -62,7 +62,7 @@ static void icuperiodcb(ICUDriver *icup) { static ICUConfig icucfg = {
ICU_INPUT_ACTIVE_HIGH,
- 10000, /* 10KHz ICU clock frequency. */
+ 10000, /* 10kHz ICU clock frequency. */
icuwidthcb,
icuperiodcb,
NULL,
|