adc_params.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Eistec AB
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 #include "periph/adc.h"
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
35 {
36  {
37  .name = "ADC1",
38  .line = ADC_LINE(0),
39  .res = ADC_RES_12BIT,
40  },
41  {
42  .name = "ADC2",
43  .line = ADC_LINE(1),
44  .res = ADC_RES_12BIT,
45  },
46  {
47  .name = "ADC3",
48  .line = ADC_LINE(2),
49  .res = ADC_RES_12BIT,
50  }
51 };
52 
53 #ifdef __cplusplus
54 }
55 #endif
56 
57 #endif /* ADC_PARAMS_H */
58 
periph.h
Parameter definitions for mapping peripherals directly to SAUL.
adc.h
Low-level ADC peripheral driver interface definitions.
ADC_LINE
#define ADC_LINE(x)
Default ADC line access macro.
Definition: adc.h:86
board.h
Board specific definitions for the RE-Mote board Revision A.
ADC_RES_12BIT
@ ADC_RES_12BIT
ADC resolution: 12 bit.
Definition: adc.h:97
saul_adc_params_t
Direct mapped ADC configuration values.
Definition: periph.h:63
saul_adc_params
static const saul_adc_params_t saul_adc_params[]
ADC configuration.
Definition: adc_params.h:34
saul_adc_params_t::name
const char * name
name of the device connected to this pin
Definition: periph.h:64