adc_params.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Eistec AB
3  * 2018 Matthew Blue <matthew.blue.neuro@gmail.com>
4  *
5  * This file is subject to the terms and conditions of the GNU Lesser
6  * General Public License v2.1. See the file LICENSE in the top level
7  * directory for more details.
8  */
9 
21 #ifndef ADC_PARAMS_H
22 #define ADC_PARAMS_H
23 
24 #include "board.h"
25 #include "saul/periph.h"
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
35 {
36  {
37  .name = "NTC thermistor",
38  .line = NTC_OUTPUT,
39  .res = ADC_RES_10BIT,
40  },
41  {
42  .name = "Light sensor",
43  .line = LIGHT_SENSOR_OUTPUT,
44  .res = ADC_RES_10BIT,
45  },
46  {
47  .name = "RC filter",
48  .line = FILTER_OUTPUT,
49  .res = ADC_RES_10BIT,
50  }
51 };
52 
53 #ifdef __cplusplus
54 }
55 #endif
56 
57 #endif /* ADC_PARAMS_H */
58 
board.h
periph.h
Parameter definitions for mapping peripherals directly to SAUL.
saul_adc_params
static const saul_adc_params_t saul_adc_params[]
ADC configuration.
Definition: adc_params.h:34
ADC_RES_10BIT
@ ADC_RES_10BIT
ADC resolution: 10 bit.
Definition: adc.h:96
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