ISF  1.1
Intelligent Sensing Framework
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines
User/Include/isf_user_config.h
Go to the documentation of this file.
00001 /**
00002  * @file isf_user_config.h
00003  * @brief The \b isf_user_config.h file contains the user configurable settings to either include or 
00004  * exclude an ISF component. 
00005  * 
00006  * @copyright Copyright (c) 2012, Freescale Semiconductor, Inc.  
00007  */
00008 
00009 #ifndef ISF_USER_CONFIG_H_
00010 #define ISF_USER_CONFIG_H_
00011 
00012 /*!
00013  * @brief When ISF_COMPONENT_SM is defined as 1, the Sensor Manager component
00014  * is linked to the user application.
00015  */
00016 #ifndef ISF_COMPONENT_SM
00017 #define ISF_COMPONENT_SM                     (1)
00018 #endif
00019 
00020 
00021 
00022 /*!
00023  * @brief When ISF_COMPONENT_CI is defined as 1, the Command Interpreter component
00024  * is linked to the user application.
00025  */
00026 #ifndef ISF_COMPONENT_CI
00027 #define ISF_COMPONENT_CI                     (1)
00028 #endif
00029 
00030 /*!
00031  * @brief When ISF_COMPONENT_I2C is defined as 1, the I2C component code is
00032  * compiled. 
00033  * <br>\b Note: The component must be recompiled when this setting is changed.
00034  */
00035 #ifndef ISF_COMPONENT_I2C
00036 #define ISF_COMPONENT_I2C                     (1)
00037 #define DEVICE_HAS_I2C_CHANNELS                (1)
00038 #endif
00039 
00040 /*!
00041  * @brief When defined as 1, the Device Messaging component\n
00042  * code will compiled.  The component must be recompiled when
00043  * this setting is changed.
00044  */
00045 #ifndef ISF_COMPONENT_DEVMSG
00046 #define ISF_COMPONENT_DEVMSG                  (1)
00047 #endif
00048 
00049 
00050 /*!
00051  * @brief When ISF_COMPONENT_BM is defined as 1, the Bus Mangement component
00052  * code is compiled.  
00053  * <br>\b Note: The component must be recompiled when this setting is changed.
00054  */
00055 #ifndef ISF_COMPONENT_BM
00056 #define ISF_COMPONENT_BM                                        (1)
00057 #endif
00058 
00059 
00060 
00061 /*!
00062  * @brief When defined as 1, the Power Management component\n
00063  * code will compiled.  The component must be recompiled when
00064  * this setting is changed.
00065  */
00066 #ifndef ISF_COMPONENT_PM
00067 #define ISF_COMPONENT_PM                     (1)
00068 #endif
00069 
00070 
00071 
00072 #endif /* ISF_USER_CONFIG_H_ */