-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathADC1.H
executable file
·141 lines (87 loc) · 3.52 KB
/
ADC1.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
//****************************************************************************
// @Module Analog / Digital Converter (ADC1)
// @Filename ADC1.H
// @Project test3.dav
//----------------------------------------------------------------------------
// @Controller Infineon XC2267M-104F80
//
// @Compiler Keil
//
// @Codegenerator 2.0
//
// @Description This file contains all function prototypes and macros for
// the ADC1 module.
//
//----------------------------------------------------------------------------
// @Date 2018/11/1 16:59:45
//
//****************************************************************************
// USER CODE BEGIN (ADC1_Header,1)
// USER CODE END
#ifndef _ADC1_H_
#define _ADC1_H_
//****************************************************************************
// @Project Includes
//****************************************************************************
// USER CODE BEGIN (ADC1_Header,2)
// USER CODE END
//****************************************************************************
// @Macros
//****************************************************************************
// USER CODE BEGIN (ADC1_Header,3)
// USER CODE END
//****************************************************************************
// @Defines
//****************************************************************************
// This parameter identifies ADC1 analog channel 0
#define ADC1_ANA_0 0
// This parameter identifies ADC1 analog channel 1
#define ADC1_ANA_1 1
// This parameter identifies ADC1 analog channel 2
#define ADC1_ANA_2 2
// This parameter identifies ADC1 analog channel 3
#define ADC1_ANA_3 3
// This parameter identifies ADC1 analog channel 4
#define ADC1_ANA_4 4
// This parameter identifies ADC1 analog channel 5
#define ADC1_ANA_5 5
// This parameter identifies ADC1 analog channel 6
#define ADC1_ANA_6 6
// This parameter identifies ADC1 analog channel 7
#define ADC1_ANA_7 7
// This parameter identifies ADC1 -Source 0
#define ADC1_SOURCE_0 0
// This parameter identifies ADC1 -Source 1
#define ADC1_SOURCE_1 1
// This parameter identifies ADC1 -Source 2
#define ADC1_SOURCE_2 2
// USER CODE BEGIN (ADC1_Header,4)
// USER CODE END
//****************************************************************************
// @Typedefs
//****************************************************************************
// USER CODE BEGIN (ADC1_Header,5)
// USER CODE END
//****************************************************************************
// @Imported Global Variables
//****************************************************************************
// USER CODE BEGIN (ADC1_Header,6)
// USER CODE END
//****************************************************************************
// @Global Variables
//****************************************************************************
// USER CODE BEGIN (ADC1_Header,7)
// USER CODE END
//****************************************************************************
// @Prototypes Of Global Functions
//****************************************************************************
void ADC1_vInit(void);
void ADC1_vStartSeq0ReqChNum(ubyte ubExtTrg, ubyte ubEnIntr, ubyte ubRFill, ubyte ubChannelNum);
// USER CODE BEGIN (ADC1_Header,8)
// USER CODE END
//****************************************************************************
// @Interrupt Vectors
//****************************************************************************
// USER CODE BEGIN (ADC1_Header,9)
// USER CODE END
#endif // ifndef _ADC1_H_