ISF
2.2 rev 5
Intelligent Sensing Framework for Kinetis with Processor Expert
Main Page
Modules
Data Structures
Files
File List
Globals
isf_user_config.h
Go to the documentation of this file.
1
/**
2
* @file isf_user_config.h
3
* @brief The \b isf_user_config.h file contains the user configurable settings to either include or
4
* exclude an ISF component.
5
*
6
* @copyright Copyright (c) 2015, Freescale Semiconductor, Inc.
7
*/
8
9
#ifndef ISF_USER_CONFIG_H_
10
#define ISF_USER_CONFIG_H_
11
12
/*!
13
* @brief When ISF_COMPONENT_SM is defined as 1, the Sensor Manager component
14
* is linked to the user application.
15
*/
16
17
/*!
18
* @brief When ISF_COMPONENT_CI is defined as 1, the Command Interpreter component
19
* is linked to the user application.
20
*/
21
#ifndef ISF_COMPONENT_CI
22
#define ISF_COMPONENT_CI (1)
23
#endif
24
25
26
27
/*!
28
* @brief When ISF_COMPONENT_BM is defined as 1, the Bus Mangement component
29
* code is compiled.
30
* <br>\b Note: The component must be recompiled when this setting is changed.
31
*/
32
#ifndef ISF_COMPONENT_BM
33
#define ISF_COMPONENT_BM (1)
34
#endif
35
36
37
38
/*!
39
* @brief When defined as 1, the Power Management component\n
40
* code will compiled. The component must be recompiled when
41
* this setting is changed.
42
*/
43
#ifndef ISF_COMPONENT_PM
44
#define ISF_COMPONENT_PM (0)
45
#endif
46
47
48
49
#endif
/* ISF_USER_CONFIG_H_ */
50
© Freescale Semiconductor, Inc. 2016. All Rights Reserved.