-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadc.h
81 lines (73 loc) · 3.03 KB
/
adc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/***********************************************************************
MODULE: ADC
VERSION: 1.02
CONTAINS: Routines for controlling the ADC-DAC peripheral on the
P89LPC936
COPYRIGHT: Embedded Systems Academy, Inc. - www.esacademy.com
LICENSE: May be freely used in commercial and non-commercial code
without royalties provided this copyright notice remains
in this file and unaltered
WARNING: IF THIS FILE IS REGENERATED BY CODE ARCHITECT ANY CHANGES
MADE WILL BE LOST. WHERE POSSIBLE USE ONLY CODE ARCHITECT
TO CHANGE THE CONTENTS OF THIS FILE
GENERATED: On "Jul 07 2016" at "10:48:45" by Code Architect 2.06
***********************************************************************/
#ifndef _ADCH_
#define _ADCH_
// adc trigger types
#define ADC_NONE 0
#define ADC_TIMER 1
#define ADC_IMMEDIATE 2
#define ADC_EDGE 3
#define ADC_DUALIMMEDIATE 4
// adc conversion types
#define ADC_FIXEDSINGLE 0
#define ADC_AUTOSCANSINGLE 1
#define ADC_FIXEDCONT 2
#define ADC_DUALCONT 3
#define ADC_AUTOSCANCONT 4
#define ADC_SINGLESTEP 5
// adc channel names
#define ADC0_CHANNEL0 0x01
#define ADC0_CHANNEL1 0x02
#define ADC0_CHANNEL2 0x04
#define ADC0_CHANNEL3 0x08
#define ADC1_CHANNEL0 0x10
#define ADC1_CHANNEL1 0x20
#define ADC1_CHANNEL2 0x40
#define ADC1_CHANNEL3 0x80
/***********************************************************************
DESC: Initializes the ADC
RETURNS: Nothing
CAUTION: Set EA to 1 after calling to enable all interrupts
************************************************************************/
extern void adc_init
(
void
);
/***********************************************************************
DESC: Configures ADC0 and starts conversions
If trigger = ADC_NONE then ADC0 is configured and no conversions
are started
RETURNS: Nothing
************************************************************************/
extern void adc_startadc0conversion
(
unsigned char trigger, // ADC_TIMER, ADC_IMMEDIATE, ADC_EDGE, ADC_DUALIMMEDIATE, ADC_NONE
unsigned char mode, // ADC_FIXEDSINGLE (select one channel in channels)
// ADC_FIXEDCONT (select one channel in channels)
// ADC_AUTOSCANSINGLE (select one to four channels in channels)
// ADC_AUTOSCANCONT (select one to four channels in channels)
// ADC_DUALCONT (select two channels in channels)
// ADC_SINGLESTEP (select one to four channels in channels)
unsigned char channels // one or more of: ADC0_CHANNEL0, ADC0_CHANNEL1, ADC0_CHANNEL2, ADC0_CHANNEL3
);
/***********************************************************************
DESC: Stops ADC0 conversions
RETURNS: Nothing
************************************************************************/
extern void adc_stopadc0conversion
(
void
);
#endif // _ADCH_