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 /demos/STM32/RT-STM32F407-DISCOVERY/chconf.h | |
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 'demos/STM32/RT-STM32F407-DISCOVERY/chconf.h')
-rw-r--r-- | demos/STM32/RT-STM32F407-DISCOVERY/chconf.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/demos/STM32/RT-STM32F407-DISCOVERY/chconf.h b/demos/STM32/RT-STM32F407-DISCOVERY/chconf.h index 110cbe8e0..88191915f 100644 --- a/demos/STM32/RT-STM32F407-DISCOVERY/chconf.h +++ b/demos/STM32/RT-STM32F407-DISCOVERY/chconf.h @@ -46,7 +46,7 @@ * @details Frequency of the system timer that drives the system ticks. This
* setting also defines the system tick time unit.
*/
-#define CH_CFG_ST_FREQUENCY 100000
+#define CH_CFG_ST_FREQUENCY 10000
/**
* @brief Time delta constant for the tick-less mode.
@@ -333,7 +333,7 @@ *
* @note The default is @p FALSE.
*/
-#define CH_DBG_SYSTEM_STATE_CHECK TRUE
+#define CH_DBG_SYSTEM_STATE_CHECK FALSE
/**
* @brief Debug option, parameters checks.
@@ -342,7 +342,7 @@ *
* @note The default is @p FALSE.
*/
-#define CH_DBG_ENABLE_CHECKS TRUE
+#define CH_DBG_ENABLE_CHECKS FALSE
/**
* @brief Debug option, consistency checks.
@@ -352,7 +352,7 @@ *
* @note The default is @p FALSE.
*/
-#define CH_DBG_ENABLE_ASSERTS TRUE
+#define CH_DBG_ENABLE_ASSERTS FALSE
/**
* @brief Debug option, trace buffer.
@@ -449,7 +449,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() { \
}
/**
@@ -458,7 +458,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() { \
}
/**
|