Dawn Framework 1.0
Universal data acquisition framework for embedded systems
adc.hxx
1// dawn/include/dawn/porting/nuttx/adc.hxx
2//
3// SPDX-License-Identifier: Apache-2.0
4//
5
6#pragma once
7
8// PATH format for ADC
9
10#define ADC_PATH_FMT "/dev/adc%d"
11
12#ifndef ANIOC_STOP
13# define ANIOC_STOP 0x1001
14#endif
15
16#ifndef ANIOC_SET_TIMER_FREQ
17# define ANIOC_SET_TIMER_FREQ 0x1002
18#endif
19
20#ifndef ANIOC_SAMPLES_ON_READ
21# define ANIOC_SAMPLES_ON_READ 0x1003
22#endif