aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F4xx/GPT/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32F4xx/GPT/main.c')
-rw-r--r--testhal/STM32F4xx/GPT/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32F4xx/GPT/main.c b/testhal/STM32F4xx/GPT/main.c
index 82342a6ef..e751d0a4f 100644
--- a/testhal/STM32F4xx/GPT/main.c
+++ b/testhal/STM32F4xx/GPT/main.c
@@ -46,7 +46,7 @@ static void gpt3cb(GPTDriver *gptp) {
* GPT2 configuration.
*/
static const GPTConfig gpt2cfg = {
- 10000, /* 10KHz timer clock.*/
+ 10000, /* 10kHz timer clock.*/
gpt2cb /* Timer callback.*/
};
@@ -54,7 +54,7 @@ static const GPTConfig gpt2cfg = {
* GPT3 configuration.
*/
static const GPTConfig gpt3cfg = {
- 10000, /* 10KHz timer clock.*/
+ 10000, /* 10kHz timer clock.*/
gpt3cb /* Timer callback.*/
};