aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F1xx/GPT/main.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-04-01 09:13:04 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-04-01 09:13:04 +0000
commitf038bffdb512f67d4f90e8cba499713458eebd67 (patch)
tree89bdebf9eecc81442ccca5db2e1a47da20deb323 /testhal/STM32F1xx/GPT/main.c
parent148eeef2e7ea57ee06ad8776417dca48c2d3ff6d (diff)
downloadChibiOS-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/STM32F1xx/GPT/main.c')
-rw-r--r--testhal/STM32F1xx/GPT/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32F1xx/GPT/main.c b/testhal/STM32F1xx/GPT/main.c
index 5a72b4e16..0fa26564f 100644
--- a/testhal/STM32F1xx/GPT/main.c
+++ b/testhal/STM32F1xx/GPT/main.c
@@ -46,7 +46,7 @@ static void gpt2cb(GPTDriver *gptp) {
* GPT1 configuration.
*/
static const GPTConfig gpt1cfg = {
- 10000, /* 10KHz timer clock.*/
+ 10000, /* 10kHz timer clock.*/
gpt1cb /* Timer callback.*/
};
@@ -54,7 +54,7 @@ static const GPTConfig gpt1cfg = {
* GPT2 configuration.
*/
static const GPTConfig gpt2cfg = {
- 10000, /* 10KHz timer clock.*/
+ 10000, /* 10kHz timer clock.*/
gpt2cb /* Timer callback.*/
};