-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDIO.C
247 lines (206 loc) · 5.08 KB
/
DIO.C
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#include "DIO.h" // Include DIO.h file
//**** Definition of DIO.c file ****
//Inizialization function
void DIO_INIT(int_32 port, int_32 pin, int_32 dir){
SET_BIT(SYSCTL_RCGCGPIO_R, port);
while(GET_BIT(SYSCTL_PRGPIO_R, port) == 0){};
switch (port){
case PORTA:
GPIO_PORTA_LOCK_R = 0x4C4F434B;
GPIO_PORTA_DIR_R |= (1<<pin);
if(!dir){
TOGGLE_BIT(GPIO_PORTA_DIR_R,pin);
SET_BIT(GPIO_PORTA_PUR_R, pin);
}
SET_BIT(GPIO_PORTA_DEN_R, pin)
GPIO_PORTA_CR_R = 0xFF;
break;
case PORTB:
GPIO_PORTB_LOCK_R = 0x4C4F434B;
GPIO_PORTB_DIR_R |= (1<<pin);
if(!dir){
TOGGLE_BIT(GPIO_PORTB_DIR_R,pin);
SET_BIT(GPIO_PORTB_PUR_R, pin);
}
SET_BIT(GPIO_PORTB_DEN_R, pin)
GPIO_PORTB_CR_R = 0xFF;
break;
case PORTC:
GPIO_PORTC_LOCK_R = 0x4C4F434B;
GPIO_PORTC_DIR_R |= (1<<pin);
if(!dir){
TOGGLE_BIT(GPIO_PORTC_DIR_R,pin);
SET_BIT(GPIO_PORTC_PUR_R, pin);
}
SET_BIT(GPIO_PORTC_DEN_R, pin)
GPIO_PORTC_CR_R = 0xFF;
break;
case PORTD:
GPIO_PORTD_LOCK_R = 0x4C4F434B;
GPIO_PORTD_DIR_R |= (1<<pin);
if(!dir){
TOGGLE_BIT(GPIO_PORTD_DIR_R,pin);
SET_BIT(GPIO_PORTD_PUR_R, pin);
}
SET_BIT(GPIO_PORTD_DEN_R, pin)
GPIO_PORTD_CR_R = 0xFF;
break;
case PORTE:
GPIO_PORTE_LOCK_R = 0x4C4F434B;
GPIO_PORTE_DIR_R |= (1<<pin);
if(!dir){
TOGGLE_BIT(GPIO_PORTE_DIR_R,pin);
SET_BIT(GPIO_PORTE_PUR_R, pin);
}
SET_BIT(GPIO_PORTE_DEN_R, pin)
GPIO_PORTE_CR_R = 0xFF;
break;
case PORTF:
GPIO_PORTF_LOCK_R = 0x4C4F434B;
GPIO_PORTF_DIR_R |= (1<<pin);
if(!dir){
TOGGLE_BIT(GPIO_PORTF_DIR_R,pin);
SET_BIT(GPIO_PORTF_PUR_R, pin);
}
GPIO_PORTF_CR_R = 0xFF;
SET_BIT(GPIO_PORTF_DEN_R, pin)
break;
default:
break;
}
}
// Write value to pin
void write_pin(int_8 port, int_8 pin, int_8 value)
{
switch (port)
{
case PORTA:
if (GET_BIT(GPIO_PORTA_DEN_R, pin) && GET_BIT(GPIO_PORTA_DIR_R, pin))
{
if (value)
{
SET_BIT(GPIO_PORTA_DATA_R, pin)
}
else
{
CLEAR_BIT(GPIO_PORTA_DATA_R, pin)
}
}
case PORTB:
if (GET_BIT(GPIO_PORTB_DEN_R, pin)&& GET_BIT(GPIO_PORTB_DIR_R, pin))
{
if (value)
{
SET_BIT(GPIO_PORTB_DATA_R, pin)
}
else
{
CLEAR_BIT(GPIO_PORTB_DATA_R, pin)
}
}
case PORTC:
if (GET_BIT(GPIO_PORTC_DEN_R, pin) && GET_BIT(GPIO_PORTC_DIR_R, pin))
{
if (value)
{
SET_BIT(GPIO_PORTC_DATA_R, pin)
}
else
{
CLEAR_BIT(GPIO_PORTC_DATA_R, pin)
}
}
case PORTD:
if (GET_BIT(GPIO_PORTD_DEN_R, pin) && GET_BIT(GPIO_PORTD_DIR_R, pin))
{
if (value)
{
SET_BIT(GPIO_PORTD_DATA_R, pin)
}
else
{
CLEAR_BIT(GPIO_PORTD_DATA_R, pin)
}
}
case PORTE:
if (GET_BIT(GPIO_PORTE_DEN_R, pin) && GET_BIT(GPIO_PORTE_DIR_R, pin))
{
if (value)
{
SET_BIT(GPIO_PORTE_DATA_R, pin)
}
else
{
CLEAR_BIT(GPIO_PORTE_DATA_R, pin)
}
}
case PORTF:
if (GET_BIT(GPIO_PORTF_DEN_R, pin) && GET_BIT(GPIO_PORTF_DIR_R, pin))
{
if (value)
{
SET_BIT(GPIO_PORTF_DATA_R, pin)
}
else
{
CLEAR_BIT(GPIO_PORTF_DATA_R, pin)
}
}
}
}
// Write value to port
void write_port(int_8 port, int_8 value)
{
for (int i = 0; i < 8; i++)
{
write_pin(port, i, GET_BIT(value,i));
}
}
// Read value from port
int_8 read_port(int_8 port)
{
int_8 port_reading = 0x00;
for (int i = 0; i < 8; i++)
{
port_reading |= DIO_ReadPin(port, i) << i;
}
return port_reading;
}
// Read value from pin
int_8 DIO_ReadPin(int_8 port, int_8 pin)
{
switch (port)
{
case PORTA:
if (GET_BIT(GPIO_PORTA_DEN_R, pin) && (!GET_BIT(GPIO_PORTA_DIR_R, pin)))
{
return GET_BIT(GPIO_PORTA_DATA_R, pin);
}
case PORTB:
if (GET_BIT(GPIO_PORTB_DEN_R, pin) && (!GET_BIT(GPIO_PORTB_DIR_R, pin)))
{
return GET_BIT(GPIO_PORTB_DATA_R, pin);
}
case PORTC:
if (GET_BIT(GPIO_PORTC_DEN_R, pin) && (!GET_BIT(GPIO_PORTC_DIR_R, pin)))
{
return GET_BIT(GPIO_PORTC_DATA_R, pin);
}
case PORTD:
if (GET_BIT(GPIO_PORTD_DEN_R, pin) && (!GET_BIT(GPIO_PORTD_DIR_R, pin)))
{
return GET_BIT(GPIO_PORTD_DATA_R, pin);
}
case PORTE:
if (GET_BIT(GPIO_PORTE_DEN_R, pin) && (!GET_BIT(GPIO_PORTE_DIR_R, pin)))
{
return GET_BIT(GPIO_PORTE_DATA_R, pin);
}
case PORTF:
if (GET_BIT(GPIO_PORTF_DEN_R, pin) && (!GET_BIT(GPIO_PORTF_DIR_R, pin)))
{
return GET_BIT(GPIO_PORTF_DATA_R, pin);
}
default: return -1;
}
}