Loading...
Searching...
No Matches
adc_params.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2017 Eistec AB
3 * Copyright (C) 2018 HAW Hamburg
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
28extern "C" {
29#endif
30
35{
36 {
37 .name = "coretemp",
38 .line = ADC_LINE(0),
39 .res = ADC_RES_16BIT,
40 },
41 {
42 .name = "corebandgap",
43 .line = ADC_LINE(1),
44 .res = ADC_RES_16BIT,
45 },
46 {
47 .name = "dcdcvbat",
48 .line = ADC_LINE(2),
49 .res = ADC_RES_16BIT,
50 },
51};
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif /* ADC_PARAMS_H */
static const saul_adc_params_t saul_adc_params[]
ADC configuration.
Definition adc_params.h:33
#define ADC_LINE(x)
Default ADC line access macro.
Definition adc.h:86
@ ADC_RES_16BIT
ADC resolution: 16 bit.
Definition adc.h:99
Parameter definitions for mapping peripherals directly to SAUL.
Direct mapped ADC configuration values.
Definition periph.h:63
const char * name
name of the device connected to this pin
Definition periph.h:64
Board specific definitions for the Zigduino board.