1 /**
2  *
3  * @defgroup nrfx_adc_config ADC peripheral driver configuration
4  * @{
5  * @ingroup nrfx_adc
6  */
7 /** @brief Enable the driver
8  *
9  *  Set to 1 to activate.
10  *
11  * @note This is an NRF_CONFIG macro.
12  */
13 #define NRFX_ADC_ENABLED
14 
15 /** @brief Interrupt priority
16  *
17  *  Following options are available:
18  * - 0 - 0 (highest)
19  * - 1 - 1
20  * - 2 - 2
21  * - 3 - 3
22  *
23  * @note This is an NRF_CONFIG macro.
24  */
25 #define NRFX_ADC_CONFIG_IRQ_PRIORITY
26 
27 /** @brief Enables logging in the module.
28  *
29  *  Set to 1 to activate.
30  *
31  * @note This is an NRF_CONFIG macro.
32  */
33 #define NRFX_ADC_CONFIG_LOG_ENABLED
34 
35 /** @brief Default Severity level
36  *
37  *  Following options are available:
38  * - 0 - Off
39  * - 1 - Error
40  * - 2 - Warning
41  * - 3 - Info
42  * - 4 - Debug
43  *
44  * @note This is an NRF_CONFIG macro.
45  */
46 #define NRFX_ADC_CONFIG_LOG_LEVEL
47 
48 /** @brief ANSI escape code prefix.
49  *
50  *  Following options are available:
51  * - 0 - Default
52  * - 1 - Black
53  * - 2 - Red
54  * - 3 - Green
55  * - 4 - Yellow
56  * - 5 - Blue
57  * - 6 - Magenta
58  * - 7 - Cyan
59  * - 8 - White
60  *
61  * @note This is an NRF_CONFIG macro.
62  */
63 #define NRFX_ADC_CONFIG_INFO_COLOR
64 
65 /** @brief ANSI escape code prefix.
66  *
67  *  Following options are available:
68  * - 0 - Default
69  * - 1 - Black
70  * - 2 - Red
71  * - 3 - Green
72  * - 4 - Yellow
73  * - 5 - Blue
74  * - 6 - Magenta
75  * - 7 - Cyan
76  * - 8 - White
77  *
78  * @note This is an NRF_CONFIG macro.
79  */
80 #define NRFX_ADC_CONFIG_DEBUG_COLOR
81 
82 
83 
84 /** @} */
85