aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32L1xx/GPT
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32L1xx/GPT')
-rw-r--r--testhal/STM32L1xx/GPT/chconf.h2
-rw-r--r--testhal/STM32L1xx/GPT/halconf.h2
-rw-r--r--testhal/STM32L1xx/GPT/main.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/testhal/STM32L1xx/GPT/chconf.h b/testhal/STM32L1xx/GPT/chconf.h
index c0181fef5..290044421 100644
--- a/testhal/STM32L1xx/GPT/chconf.h
+++ b/testhal/STM32L1xx/GPT/chconf.h
@@ -459,7 +459,7 @@
* @brief Threads initialization hook.
* @details User initialization code added to the @p chThdInit() API.
*
- * @note It is invoked from within @p chThdInit() and implicitily from all
+ * @note It is invoked from within @p chThdInit() and implicitly from all
* the threads creation APIs.
*/
#if !defined(THREAD_EXT_INIT_HOOK) || defined(__DOXYGEN__)
diff --git a/testhal/STM32L1xx/GPT/halconf.h b/testhal/STM32L1xx/GPT/halconf.h
index 1b9896157..ad048e08f 100644
--- a/testhal/STM32L1xx/GPT/halconf.h
+++ b/testhal/STM32L1xx/GPT/halconf.h
@@ -268,7 +268,7 @@
/**
* @brief Number of initialization attempts before rejecting the card.
- * @note Attempts are performed at 10mS intevals.
+ * @note Attempts are performed at 10mS intervals.
*/
#if !defined(SDC_INIT_RETRY) || defined(__DOXYGEN__)
#define SDC_INIT_RETRY 100
diff --git a/testhal/STM32L1xx/GPT/main.c b/testhal/STM32L1xx/GPT/main.c
index ea48f2545..e263c4813 100644
--- a/testhal/STM32L1xx/GPT/main.c
+++ b/testhal/STM32L1xx/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.*/
};