diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2015-03-16 06:57:36 +0000 |
---|---|---|
committer | Uladzimir Pylinski <barthess@yandex.ru> | 2015-03-16 06:57:36 +0000 |
commit | 5a32124d5588a01a72d580e60c9791c49b9ff859 (patch) | |
tree | ce9eb184469d6a173eebe384e0cd71891909a7f9 /os/hal | |
parent | 953eab4dbf1d0c3971935d1eca5d172209e80384 (diff) | |
download | ChibiOS-5a32124d5588a01a72d580e60c9791c49b9ff859.tar.gz ChibiOS-5a32124d5588a01a72d580e60c9791c49b9ff859.tar.bz2 ChibiOS-5a32124d5588a01a72d580e60c9791c49b9ff859.zip |
Fixed typo in comments.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7772 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/ports/STM32/STM32F4xx/hal_lld.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/STM32F4xx/hal_lld.h b/os/hal/ports/STM32/STM32F4xx/hal_lld.h index 9defd2c3b..c466a8274 100644 --- a/os/hal/ports/STM32/STM32F4xx/hal_lld.h +++ b/os/hal/ports/STM32/STM32F4xx/hal_lld.h @@ -1405,7 +1405,7 @@ #endif
/**
- * @brief Clock of timers connected to AHB1
+ * @brief Clock of timers connected to APB1
* (Timers 2, 3, 4, 5, 6, 7, 12, 13, 14).
*/
#if (STM32_PPRE1 == STM32_PPRE1_DIV1) || defined(__DOXYGEN__)
@@ -1415,7 +1415,7 @@ #endif
/**
- * @brief Clock of timers connected to AHB2 (Timers 1, 8, 9, 10, 11).
+ * @brief Clock of timers connected to APB2 (Timers 1, 8, 9, 10, 11).
*/
#if (STM32_PPRE2 == STM32_PPRE2_DIV1) || defined(__DOXYGEN__)
#define STM32_TIMCLK2 (STM32_PCLK2 * 1)
|