Zephyr API Documentation
3.6.0
A Scalable Open Source RTOS
3.6.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
Files
File List
Globals
All
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
x
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Macros
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
▼
Zephyr API Documentation
►
Introduction
Deprecated List
►
Modules
►
Data Structures
▼
Files
►
File List
►
Globals
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
adc.h
Go to the documentation of this file.
1
/*
2
* Copyright 2021 Google LLC
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_ADC_ADC_H_
7
#define ZEPHYR_INCLUDE_DT_BINDINGS_ADC_ADC_H_
8
9
/*
10
* Provide the BIT_MASK() macro for when this file is included from
11
* devicetrees.
12
*/
13
#ifndef BIT_MASK
14
#define BIT_MASK(n) ((1 << (n)) - 1)
15
#endif
16
18
#define ADC_ACQ_TIME_MICROSECONDS (1)
20
#define ADC_ACQ_TIME_NANOSECONDS (2)
22
#define ADC_ACQ_TIME_TICKS (3)
24
#define ADC_ACQ_TIME(unit, value) (((unit) << 14) | ((value) & BIT_MASK(14)))
26
#define ADC_ACQ_TIME_DEFAULT 0
27
#define ADC_ACQ_TIME_MAX BIT_MASK(14)
28
29
#define ADC_ACQ_TIME_UNIT(time) (((time) >> 14) & BIT_MASK(2))
30
#define ADC_ACQ_TIME_VALUE(time) ((time) & BIT_MASK(14))
31
32
#endif
/* ZEPHYR_INCLUDE_DT_BINDINGS_ADC_ADC_H_ */
zephyr
dt-bindings
adc
adc.h
Generated on Sat Feb 24 2024 03:45:05 for Zephyr API Documentation by
1.9.6