adc_params.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017 Thomas Stilwell <stilwellt@openlabs.co>
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
20 #ifndef ADC_PARAMS_H
21 #define ADC_PARAMS_H
22 
23 #include "board.h"
24 #include "saul/periph.h"
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
34 {
35  {
36  .name = "A0",
37  .line = ADC_LINE(0),
38  .res = ADC_RES_16BIT,
39  },
40  {
41  .name = "A1",
42  .line = ADC_LINE(1),
43  .res = ADC_RES_16BIT,
44  },
45  {
46  .name = "A2",
47  .line = ADC_LINE(2),
48  .res = ADC_RES_16BIT,
49  },
50  {
51  .name = "A3",
52  .line = ADC_LINE(3),
53  .res = ADC_RES_16BIT,
54  },
55  {
56  .name = "coretemp",
57  .line = ADC_LINE(4),
58  .res = ADC_RES_16BIT,
59  },
60  {
61  .name = "corebandgap",
62  .line = ADC_LINE(5),
63  .res = ADC_RES_16BIT,
64  },
65  {
66  .name = "dcdcvbat",
67  .line = ADC_LINE(6),
68  .res = ADC_RES_16BIT,
69  },
70 };
71 
72 #ifdef __cplusplus
73 }
74 #endif
75 
76 #endif /* ADC_PARAMS_H */
77 
board.h
Board specific definitions for openlabs-kw41z-mini.
periph.h
Parameter definitions for mapping peripherals directly to SAUL.
ADC_RES_16BIT
@ ADC_RES_16BIT
ADC resolution: 16 bit.
Definition: adc.h:99
saul_adc_params
static const saul_adc_params_t saul_adc_params[]
ADC configuration.
Definition: adc_params.h:33
ADC_LINE
#define ADC_LINE(x)
Default ADC line access macro.
Definition: adc.h:86
saul_adc_params_t
Direct mapped ADC configuration values.
Definition: periph.h:63
saul_adc_params_t::name
const char * name
name of the device connected to this pin
Definition: periph.h:64