diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-31 10:46:06 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-31 10:46:06 +0000 |
commit | 246b79ae4ae53db056d1c892f5beebc462ef25b6 (patch) | |
tree | 2f7a8ff7095d8fc2c7d2c510f80bdbf2de6bb66e /os | |
parent | 13dd1668a6fc3be71fbd7dcc98a6d3d2cc6ddecc (diff) | |
download | ChibiOS-246b79ae4ae53db056d1c892f5beebc462ef25b6.tar.gz ChibiOS-246b79ae4ae53db056d1c892f5beebc462ef25b6.tar.bz2 ChibiOS-246b79ae4ae53db056d1c892f5beebc462ef25b6.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7836 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/STM32/LLD/TIMv1/st_lld.h | 1 | ||||
-rw-r--r-- | os/rt/templates/chconf.h | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/LLD/TIMv1/st_lld.h b/os/hal/ports/STM32/LLD/TIMv1/st_lld.h index 9c5442158..571396d91 100644 --- a/os/hal/ports/STM32/LLD/TIMv1/st_lld.h +++ b/os/hal/ports/STM32/LLD/TIMv1/st_lld.h @@ -54,6 +54,7 @@ * @brief TIMx unit (by number) to be used for free running operations.
* @note You must select a 32 bits timer if a 32 bits @p systick_t type
* is required.
+ * @note Timers 2, 3, 4 and 5 are supported.
*/
#if !defined(STM32_ST_USE_TIMER) || defined(__DOXYGEN__)
#define STM32_ST_USE_TIMER 2
diff --git a/os/rt/templates/chconf.h b/os/rt/templates/chconf.h index 74e7fbb04..56e874b3b 100644 --- a/os/rt/templates/chconf.h +++ b/os/rt/templates/chconf.h @@ -448,7 +448,7 @@ * should be invoked from here.
* @note This macro can be used to activate a power saving mode.
*/
-#define CH_CFG_IDLE_ENTER_HOOK() { \
+#define CH_CFG_IDLE_ENTER_HOOK() { \
}
/**
@@ -457,7 +457,7 @@ * should be invoked from here.
* @note This macro can be used to deactivate a power saving mode.
*/
-#define CH_CFG_IDLE_LEAVE_HOOK() { \
+#define CH_CFG_IDLE_LEAVE_HOOK() { \
}
/**
|