aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32L4xx/CAN/chconf.h
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-02-28 09:03:32 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-02-28 09:03:32 +0000
commit98ef475714df436553966f278e472b8e593401c5 (patch)
treeb373b4e14ac2d490f458cba4e4c8f356760baaa0 /testhal/STM32/STM32L4xx/CAN/chconf.h
parent18543d21c71037cf9ff3f16bf25d5ca425939914 (diff)
downloadChibiOS-98ef475714df436553966f278e472b8e593401c5.tar.gz
ChibiOS-98ef475714df436553966f278e472b8e593401c5.tar.bz2
ChibiOS-98ef475714df436553966f278e472b8e593401c5.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8979 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32L4xx/CAN/chconf.h')
-rw-r--r--testhal/STM32/STM32L4xx/CAN/chconf.h44
1 files changed, 7 insertions, 37 deletions
diff --git a/testhal/STM32/STM32L4xx/CAN/chconf.h b/testhal/STM32/STM32L4xx/CAN/chconf.h
index edd657ac1..405149b3b 100644
--- a/testhal/STM32/STM32L4xx/CAN/chconf.h
+++ b/testhal/STM32/STM32L4xx/CAN/chconf.h
@@ -28,8 +28,6 @@
#ifndef _CHCONF_H_
#define _CHCONF_H_
-#define _CHIBIOS_RT_CONF_
-
/*===========================================================================*/
/**
* @name System timers settings
@@ -327,7 +325,7 @@
*
* @note The default is @p FALSE.
*/
-#define CH_DBG_STATISTICS FALSE
+#define CH_DBG_STATISTICS TRUE
/**
* @brief Debug option, system state check.
@@ -362,16 +360,9 @@
* @details If enabled then the context switch circular trace buffer is
* activated.
*
- * @note The default is @p CH_DBG_TRACE_MASK_NONE.
- */
-#define CH_DBG_TRACE_MASK CH_DBG_TRACE_MASK_ALL
-
-/**
- * @brief Trace buffer entries.
- * @note The trace buffer is only allocated if @p CH_DBG_TRACE_MASK is
- * different from @p CH_DBG_TRACE_MASK_NONE.
+ * @note The default is @p FALSE.
*/
-#define CH_DBG_TRACE_BUFFER_SIZE 128
+#define CH_DBG_ENABLE_TRACE TRUE
/**
* @brief Debug option, stack checks.
@@ -436,6 +427,10 @@
/**
* @brief Threads finalization hook.
* @details User finalization code added to the @p chThdExit() API.
+ *
+ * @note It is inserted into lock zone.
+ * @note It is also invoked when the threads simply return in order to
+ * terminate.
*/
#define CH_CFG_THREAD_EXIT_HOOK(tp) { \
/* Add threads finalization code here.*/ \
@@ -450,27 +445,12 @@
}
/**
- * @brief ISR enter hook.
- */
-#define CH_CFG_IRQ_PROLOGUE_HOOK() { \
- /* IRQ prologue code here.*/ \
-}
-
-/**
- * @brief ISR exit hook.
- */
-#define CH_CFG_IRQ_EPILOGUE_HOOK() { \
- /* IRQ epilogue code here.*/ \
-}
-
-/**
* @brief Idle thread enter hook.
* @note This hook is invoked within a critical zone, no OS functions
* should be invoked from here.
* @note This macro can be used to activate a power saving mode.
*/
#define CH_CFG_IDLE_ENTER_HOOK() { \
- /* Idle-enter code here.*/ \
}
/**
@@ -480,7 +460,6 @@
* @note This macro can be used to deactivate a power saving mode.
*/
#define CH_CFG_IDLE_LEAVE_HOOK() { \
- /* Idle-leave code here.*/ \
}
/**
@@ -509,15 +488,6 @@
/* System halt code here.*/ \
}
-/**
- * @brief Trace hook.
- * @details This hook is invoked each time a new record is written in the
- * trace buffer.
- */
-#define CH_CFG_TRACE_HOOK(tep) { \
- /* Trace code here.*/ \
-}
-
/** @} */
/*===========================================================================*/