diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-12 19:15:30 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-12 19:15:30 +0000 |
commit | bc571ccd326886a8cbbde85de66b6fab91336193 (patch) | |
tree | 340502739bcc6ca937b5721c1bab9d64bed8d8b5 /os | |
parent | 3db4f2d2353f7f87f5112fb8d152e87733bd9ae0 (diff) | |
download | ChibiOS-bc571ccd326886a8cbbde85de66b6fab91336193.tar.gz ChibiOS-bc571ccd326886a8cbbde85de66b6fab91336193.tar.bz2 ChibiOS-bc571ccd326886a8cbbde85de66b6fab91336193.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3312 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/templates/halconf.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/os/hal/templates/halconf.h b/os/hal/templates/halconf.h index 0e616d3d5..43bc0440f 100644 --- a/os/hal/templates/halconf.h +++ b/os/hal/templates/halconf.h @@ -60,6 +60,13 @@ #endif
/**
+ * @brief Enables the EXT subsystem.
+ */
+#if !defined(HAL_USE_EXT) || defined(__DOXYGEN__)
+#define HAL_USE_EXT FALSE
+#endif
+
+/**
* @brief Enables the GPT subsystem.
*/
#if !defined(HAL_USE_GPT) || defined(__DOXYGEN__)
@@ -185,6 +192,22 @@ /*===========================================================================*/
/**
+ * @name EXT driver related setting
+ * @{
+ */
+/*===========================================================================*/
+/** @} */
+
+/*===========================================================================*/
+/**
+ * @name GPT driver related setting
+ * @{
+ */
+/*===========================================================================*/
+/** @} */
+
+/*===========================================================================*/
+/**
* @name I2C driver related setting
* @{
*/
@@ -204,6 +227,13 @@ * @{
*/
/*===========================================================================*/
+
+/**
+ * @brief Enables an event sources for incoming packets.
+ */
+#if !defined(MAC_USE_EVENTS) || defined(__DOXYGEN__)
+#define MAC_USE_EVENTS TRUE
+#endif
/** @} */
/*===========================================================================*/
|