-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
429 lines (321 loc) · 8.61 KB
/
main.c
File metadata and controls
429 lines (321 loc) · 8.61 KB
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#include "stm32l476xx.h"
#include "SysClock.h"
#include "LED.h"
#include "UART.h"
#include "recipe.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
//#define DEBUG_PRINT
//#define DEBUG_WAIT_PRINT
char RxComByte = 0;
uint8_t buffer[BufferSize];
uint8_t g_pendingInterrupt = 0;
uint32_t clockT = 0;
//Position status for servos
uint8_t servoPos[2] = {0, 0};
//Recipe instruction
uint8_t recPos[2] = {0, 0};
//Recipe operation status
uint8_t recStat[2] = {0, 0};
//Address to set registers
volatile uint32_t *servos[2] = {&(TIM2->CCR1), &(TIM2->CCR2)};
//Two commands
char inputBuf[2] = {'\0', '\0'};
//Loop stuff
BOOL inLoop[2];
uint8_t loopStart[2];
uint8_t loopsRemaining[2];
//Wait Timing
uint8_t waitTimings[2] = {0, 0};
void setupGPIO(){
RCC->AHB2ENR |= RCC_AHB2ENR_GPIOAEN;
//Input from PA0 Alternate function mode
GPIOA->MODER &= ((~GPIO_MODER_MODER0) & (~GPIO_MODER_MODER1));
GPIOA->MODER |= GPIO_MODER_MODER0_1 | GPIO_MODER_MODER1_1;
//Seturp Alternate Function Bologna for PA0 and PA1
GPIOA->AFR[0] &= ~GPIO_AFRL_AFRL0;
GPIOA->AFR[0] |= 0x0011;
}
void setupInterrupt(){
//Enable the system Clock
RCC->APB2ENR |= RCC_APB2ENR_USART1EN | RCC_APB2ENR_SYSCFGEN;
//Set PA0 to EXTI0
SYSCFG->EXTICR[0] |= SYSCFG_EXTICR1_EXTI0_PA;
//Setup EXTI
EXTI->IMR1 |= EXTI_IMR1_IM0;
EXTI->RTSR1 |= EXTI_RTSR1_RT0;
//Setup NVIC
NVIC_SetPriority(EXTI0_IRQn, NVIC_EncodePriority(NVIC_GetPriorityGrouping(), 1, 0));
NVIC_EnableIRQ(EXTI0_IRQn);
}
void setupTimer2(){
//Enable clock for timer 2
RCC->APB1ENR1 |= RCC_APB1ENR1_TIM2EN;
//Timer Prescale 80MHz / 80 -> 1MHz
TIM2->PSC = (80-1);
//Turn off input capture
TIM2->CCER &= ~TIM_CCER_CC1E;
//Enable Input Capture channels
TIM2->CCMR1 &= ~TIM_CCMR1_CC1S;
TIM2->CCMR1 &= ~TIM_CCMR1_CC2S;
//pwm enable with pre-load
TIM2->CCMR1 |= TIM_CCMR1_OC1PE | TIM_CCMR1_OC2PE | TIM_CCMR1_OC1M_1 | TIM_CCMR1_OC1M_2 | TIM_CCMR1_OC2M_1 | TIM_CCMR1_OC2M_2;
TIM2->CR1 |= TIM_CR1_ARPE;
//Re-enable input capture
TIM2->CCER |= TIM_CCER_CC1E | TIM_CCER_CC2E;
//20ms Period
TIM2->ARR = 20000;
//Initial servo Positions
TIM2->CCR1 = pwmDuty[0];
TIM2->CCR2 = pwmDuty[0];
//Input Caputure Filter 7 Cycles
//TIM2->CCMR1 |= TIM_CCMR1_IC1F_2 | TIM_CCMR1_IC1F_1 | TIM_CCMR1_IC1F_0;
//Generate a Flipping Event
TIM2->EGR |= TIM_EGR_UG;
//Enable counter
TIM2->CR1 = TIM_CR1_CEN;
}
// void EXTI0_IRQHandler(void){
//
// g_pendingInterrupt = 1;
// clockT = TIM2->CCR1;
// TIM2->CNT = 0;
//
// if(started && started < 1001){
// started++;
// if((clockT - lPeriodMS)< 101){
// buckets[(clockT - lPeriodMS)]++;
// }
// }
//
// EXTI->PR1 |= EXTI_PR1_PIF0;
// }
void parseSingleCommand(char in, int servo){
switch(in){
//Go right
case 'r':
case 'R':
if(servoPos[servo] != 0)
*servos[servo] = pwmDuty[--servoPos[servo]];
break;
//Go Left
case 'l':
case 'L':
if(servoPos[servo] != 5)
*servos[servo] = pwmDuty[++servoPos[servo]];
break;
//Pause
case 'p':
case 'P':
recStat[servo] = FALSE;
Green_LED_Off();
break;
//Continue
case 'c':
case 'C':
if( recPos[servo] != 0){
recStat[servo] = TRUE;
Green_LED_On();
}
break;
//No-Op
case 'n':
case 'N':
break;
//restart
case 'b':
case 'B':
recStat[servo] = TRUE;
recPos[servo] = 0;
inLoop[servo] = FALSE;
waitTimings[servo] = 0;
Green_LED_On();
Red_LED_Off();
break;
//Otherwise ignore
default:
USART_Write(USART2, (uint8_t *)"User Command Error\r\n>", strlen("User Command Error\r\n>"));
break;
}
}
//run a single instruction
void runInstruction( int servo ){
//Get instruction only portion
uint8_t instruction = recipeTest[servo][recPos[servo]] & 0xE0;
uint8_t argument = recipeTest[servo][recPos[servo]] & 0x1F;
//if we need to wait, decrement the counter, then wait
if(waitTimings[servo] > 0) {
#ifdef DEBUG_WAIT_PRINT
USART_Write(USART2, (uint8_t *)".\r\n", strlen(".\r\n"));
#endif
waitTimings[servo]--;
return;
}
//Do instruction parsing
switch (instruction){
//Move
case MOV:
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"MOV\r\n", strlen("MOV\r\n"));
#endif
//Check if out of range
if(5 < argument){
USART_Write(USART2, (uint8_t *)"MOV Argument error\r\n Stopping Execution\r\n>", strlen("MOV Argument error\r\n Stopping Execution\r\n>"));
//reset statuses
recStat[servo] = FALSE;
recPos[servo] = 0;
inLoop[servo] = FALSE;
//reset waits
waitTimings[servo] = 0;
Red_LED_On();
} else {
//Calculate waits for this move
waitTimings[servo] = abs((int)servoPos[servo] - argument) << 1 ;
//Set Position
servoPos[servo] = argument;
//Send the servo there
*servos[servo] = pwmDuty[argument];
}
break;
//Custom Command moves servo to the right if possible
case RIGHT:
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"RIGHT\r\n", strlen("RIGHT\r\n"));
#endif
if(servoPos[servo] != 0)
//Calculate waits for this move
waitTimings[servo] = abs((int)servoPos[servo] - argument) << 1 ;
//Send the servo there and set position
*servos[servo] = pwmDuty[--servoPos[servo]];
break;
//Custom Command moves servo to the left if possible
case LEFT:
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"LEFT\r\n", strlen("LEFT\r\n"));
#endif
if(servoPos[servo] != 5)
//Calculate waits for this move
waitTimings[servo] = abs((int)servoPos[servo] - argument) << 1 ;
//Send the servo there and set position
*servos[servo] = pwmDuty[++servoPos[servo]];
break;
//Start a loop
case LOOP:
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"LOOP\r\n", strlen("LOOP\r\n"));
#endif
//check for nested loop
if( inLoop[servo] ) {
recPos[servo] = 0;
recStat[servo] = FALSE;
Red_LED_On();
Green_LED_On();
return;
} //Loop Error
else{
//Setup Loop
inLoop[servo] = TRUE;
loopStart[servo] = recPos[servo];
loopsRemaining[servo] = argument;
}
break;
//End a loop
case ENDLOOP:
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"ENDLOOP\r\n", strlen("ENDLOOP\r\n"));
#endif
//check for no loop
if( !inLoop[servo] ) {
Red_LED_On();
} //TODO Loop Error
else{
//check to see if finished
if(loopsRemaining[servo] == 0){
//Set loop to off
inLoop[servo] = FALSE;
//if need to iterate again
} else {
//start loop again
loopsRemaining[servo]--;
recPos[servo] = loopStart[servo];
}
}
break;
//Wait for some amount of time
case WAIT:
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"WAIT\r\n", strlen("WAIT\r\n"));
#endif
//Set number of times to wait
waitTimings[servo] = argument;
break;
//End the recipe
case RECIPEEND:
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"RECIPEEND\r\n", strlen("RECIPEEND\r\n"));
#endif
//Cleanup and set running to false
recPos[servo] = 0;
recStat[servo] = FALSE;
return;
default:
Red_LED_On();
Green_LED_Off();
}
//Set next instruction
recPos[servo]++;
}
int main(void){
//char rxByte = 0;
System_Clock_Init(); // Switch System Clock = 80 MHz
LED_Init();
UART2_Init();
setupGPIO();
//setupInterrupt();
setupTimer2();
//Init that we aren't in a loop
inLoop[0] = FALSE;
inLoop[1] = FALSE;
// //this loop switches between the two for testing
// while(1){
// rxByte = USART_Read(USART2);
// TIM2->CCR1 = pwmDuty[rxByte-48];
// rxByte = 0;
// rxByte = USART_Read(USART2);
// TIM2->CCR2 = pwmDuty[rxByte-48];
// }
USART_Write(USART2, (uint8_t *)"Setup Complete\r\n>", strlen("Setup Complete\r\n>"));
Green_LED_Off();
Red_LED_Off();
while (1){
char charRead;
//100ms delay + or - time spent reading characters
for( int i = 0; i < 303030; i++)
while (USART_ReadNB(USART2, &charRead)){
USART_Write(USART2,(uint8_t *)&charRead, sizeof(char));
if(charRead == '\r'){
USART_Write(USART2, (uint8_t *)"\r\n>", strlen("\r\n>"));
parseSingleCommand(inputBuf[0], 0);
parseSingleCommand(inputBuf[1], 1);
} else {
inputBuf[0] = inputBuf[1];
inputBuf[1] = charRead;
}
}
//If running run an instruction on one servo
if(recStat[0]){
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"1:", strlen("1:"));
#endif
runInstruction(0);
}
//If running run an instruction on the other servo
if(recStat[1]){
#ifdef DEBUG_PRINT
USART_Write(USART2, (uint8_t *)"2:", strlen("2:"));
#endif
runInstruction(1);
}
}
}