-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask_ButtonInput.c
275 lines (275 loc) · 9.96 KB
/
Task_ButtonInput.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
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
// #include "Task_ButtonInput.h"
// #include "Task_Menu.h"
//
// #include "same70-base_16/RevolveDrivers/pio.h"
// #include "DriversNotInBase/IO_DashInit.h"
//
// volatile bool rotary_cw = false;
// volatile bool rotary_ccw = false;
//
// static bool start_button_pushed_in = false;
// static bool lc_button_pushed_in = false;
// static uint32_t start_button_time_counter = 0;
// static uint32_t lc_button_time_counter = 0;
// static TimerHandle_t startButtonTimer;
// static TimerHandle_t lcButtontimer;
// #define START_BUTTON_TIME_INCREMENT 5
// #define START_BUTTON_DELAY 500
//
//
// typedef struct previousButtonPressStates {
// uint8_t prev_navigation_left;
// uint8_t prev_navigation_right;
// uint8_t prev_navigation_down;
// uint8_t prev_navigation_up;
//
// uint8_t prev_launch_control;
// uint8_t prev_push_ack;
// uint8_t prev_rot_ack;
// uint8_t prev_start;
// } prevBtnState;
//
// prevBtnState prevBtn = {
// .prev_navigation_left = 1,
// .prev_navigation_right = 1,
// .prev_navigation_down = 1,
// .prev_navigation_up = 1,
// .prev_launch_control = 1,
// .prev_push_ack = 1,
// .prev_rot_ack = 1,
// .prev_start = 1
// };
//
//
// static void vStartButtonCallback(TimerHandle_t xTimer) {
// if ( (pio_readPin(START_PIO,START_PIN) == 0) && (prevBtn.prev_start == 0) ) {
// start_button_pushed_in = true;
// start_button_time_counter += START_BUTTON_TIME_INCREMENT;
// }
// else {
// start_button_pushed_in = false;
// start_button_time_counter = 0;
// xTimerStop(startButtonTimer,0);
// }
// }
//
// static void vLCButtonCallback(TimerHandle_t xTimer) {
// if ( (pio_readPin(LC_PIO,LC_PIN) == 0) && (prevBtn.prev_launch_control == 0) ) {
// lc_button_pushed_in = true;
// lc_button_time_counter += START_BUTTON_TIME_INCREMENT;
// }
// else {
// lc_button_pushed_in = false;
// lc_button_time_counter = 0;
// xTimerStop(lcButtontimer,0);
// }
// }
//
// void Task_ButtonInput() {
// TickType_t xLastwakeTime;
//
// //A switch will be true if there has been a transition from one state to another
// //It will be set to false after its handled in the menu task
//
// startButtonTimer = xTimerCreate("startButton",5/portTICK_RATE_MS,pdTRUE,0,vStartButtonCallback);
// lcButtontimer = xTimerCreate("lcButton", 5/portTICK_RATE_MS, pdTRUE,0,vLCButtonCallback);
// // Implement a function that checks if all buttons are in the correct position at start up ?
//
// while(1) {
//
// //static bool led_status = true;
// //pio_setOutput(TEMP_LED_PIO,TEMP_LED_PIN,led_status);
// //led_status != led_status;
// xSemaphoreTake(xButtonStruct,portMAX_DELAY); // Wait indefinetely for access to Button struct
//
// // The order which the buttons are checked determines the priority order of the buttonpress that will be set to true
// // if multiple button presses are registered at the same time.
// //Check for navigation action
// if (btn.unhandledButtonAction == false) {
//
//
// //*************************************************************************************************//
// //*********************************************NAVIGATION******************************************//
// //*************************************************************************************************//
// if ( (pio_readPin(NAVIGATION_L_PIO,NAVIGATION_L_PIN) == 0) && (prevBtn.prev_navigation_left == 1) ) {
// btn.unhandledButtonAction = true;
// btn.btn_type = NAVIGATION;
// btn.navigation = LEFT;
// }
// else if ((pio_readPin(NAVIGATION_R_PIO,NAVIGATION_R_PIN) == 0) && (prevBtn.prev_navigation_right == 1) ) {
// btn.unhandledButtonAction = true;
// btn.btn_type = NAVIGATION;
// btn.navigation = RIGHT;
// }
// else if ((pio_readPin(NAVIGATION_D_PIO,NAVIGATION_D_PIN) == 0) && (prevBtn.prev_navigation_down == 1) ) {
// btn.unhandledButtonAction = true;
// btn.btn_type = NAVIGATION;
// btn.navigation = DOWN;
// }
// else if ((pio_readPin(NAVIGATION_U_PIO,NAVIGATION_U_PIN) == 0) && (prevBtn.prev_navigation_up == 1) ) {
// btn.unhandledButtonAction = true;
// btn.btn_type = NAVIGATION;
// btn.navigation = UP;
// }
// else if ( (pio_readPin(NAV_ACK_PIO,NAV_ACK_PIN) == 0) && (prevBtn.prev_push_ack == 1) ) {
// btn.unhandledButtonAction = true;
// btn.btn_type = PUSH_ACK;
// }
// else if ( (pio_readPin(ROT_PUSH3_PIO,ROT_PUSH3_PIN) == 0) && (prevBtn.prev_rot_ack == 1) ) {
// btn.unhandledButtonAction = true;
// btn.btn_type = ROT_ACK;
// }
//
// //*************************************************************************************************//
// //*********************************************ROTARY ENCODER**************************************//
// //*************************************************************************************************//
// else if (rotary_cw == true) {
// btn.unhandledButtonAction = true;
// btn.rotary_cw = true;
// btn.btn_type = ROTARY;
// rotary_cw = false; // reset
// }
// else if (rotary_ccw == true) {
// btn.unhandledButtonAction = true;
// btn.rotary_ccw = true;
// btn.btn_type = ROTARY;
// rotary_ccw = false; // reset
// }
// //*************************************************************************************************//
// //*********************************************LAUNCH CONTROL**************************************//
// //*************************************************************************************************//
// else if ((pio_readPin(LC_PIO,LC_PIN) == 0) && (prevBtn.prev_launch_control == 1)) {
// lc_button_pushed_in = false;
// lc_button_time_counter = 0;
// xTimerReset(lcButtontimer,0);
//
// }
// else if ( (lc_button_pushed_in == true ) && (lc_button_time_counter >= START_BUTTON_DELAY)) {
// btn.unhandledButtonAction = true;
// btn.btn_type = LAUNCH_CONTROL;
//
// xTimerStop(lcButtontimer,0);
// lc_button_pushed_in = false;
// lc_button_time_counter = 0;
// }
// //*************************************************************************************************//
// //*********************************************START/ DRIVE ENABLE*********************************//
// //*************************************************************************************************//
// else if ( (pio_readPin(START_PIO, START_PIN) == 0) && (prevBtn.prev_start == 1) ) {
// start_button_pushed_in = false;
// start_button_time_counter = 0;
// xTimerReset(startButtonTimer,0);
// // This button should only be true if it has been pushed down for 0.5 seconds
// // After first activation, continually check that button == 0 and prev == 0 for 0.5 seconds
// }
// else if ( (start_button_pushed_in == true) && (start_button_time_counter >= START_BUTTON_DELAY) ) {
// btn.unhandledButtonAction = true;
// btn.btn_type = START;
//
// xTimerStop(startButtonTimer,0);
// start_button_pushed_in = false;
// start_button_time_counter = 0;
// }
// }
// prevBtn.prev_navigation_left = pio_readPin(NAVIGATION_L_PIO,NAVIGATION_L_PIN);
// prevBtn.prev_navigation_right = pio_readPin(NAVIGATION_R_PIO,NAVIGATION_R_PIN);
// prevBtn.prev_navigation_down = pio_readPin(NAVIGATION_D_PIO,NAVIGATION_D_PIN);
// prevBtn.prev_navigation_up = pio_readPin(NAVIGATION_U_PIO,NAVIGATION_U_PIN);
//
// prevBtn.prev_rot_ack = pio_readPin(ROT_PUSH3_PIO,ROT_PUSH3_PIN);
// prevBtn.prev_push_ack = pio_readPin(NAV_ACK_PIO,NAV_ACK_PIN);
// prevBtn.prev_launch_control = pio_readPin(LC_PIO,LC_PIN);
// prevBtn.prev_start = pio_readPin(START_PIO, START_PIN);
//
// xSemaphoreGive(xButtonStruct);
//
// vTaskDelay(20/portTICK_RATE_MS);
// }
// }
// //Check the push button on the rotary encoder (acknowledge button)
// // if (btn.unhandledButtonAction == false) {
// // if ( (pio_readPin(ROT_PUSH3_PIO,ROT_PUSH3_PIN) == 0) && (prev_dash_ack == 1) ) {
// // btn.unhandledButtonAction = true;
// // btn.dash_acknowledge = true;
// // btn.btn_type = PUSH_ACK;
// // }
// // }
//
// //Check if the the system acknowledge button has been pressed
// // if (btn.unhandledButtonAction == false) {
// // if ( (pio_readPin(NAV_ACK_PIO,NAV_ACK_PIN) == 0) && (prev_sys_ack == 1) ) {
// // btn.unhandledButtonAction = true;
// // btn.system_acknowledge = true;
// // btn.btn_type = ROT_ACK;
// // }
// // }
//
// void Task_RotaryEncoder() {
// uint8_t rot_phase_a = 0;
// uint8_t rot_phase_b = 0;
// uint8_t rot_state = 0;
// uint8_t prev_rot_state = 0;
//
// bool led_status = true;
// while(1) {
//
// //pio_setOutput(AMS_LED_PIO,AMS_LED_PIN,led_status);
// //led_status != led_status;
//
//
// //Check rotary encoder for new input
// // ^ XOR . true when inputs differ
// rot_phase_a = pio_readPin(ROT_A_PIO, ROT_A_PIN);
// rot_phase_b = pio_readPin(ROT_B_PIO, ROT_B_PIN);
// rot_state = (rot_phase_a << 1) | rot_phase_b;
// switch (rot_state) {
// case 0b00:
// if (prev_rot_state == 0b10) {
// // CCW Rotation
// rotary_ccw = true;
// }
// else if (prev_rot_state == 0b01) {
// // CW Rotation
// rotary_cw = true;
// }
// break;
// case 0b01:
// if (prev_rot_state == 0b00) {
// // CCW Rotation
// rotary_ccw = true;
// }
// else if (prev_rot_state == 0b11) {
// // CW Rotation
// rotary_cw = true;
// }
// break;
// case 0b10:
// if (prev_rot_state == 0b11) {
// // CCW Rotation
// rotary_ccw = true;
// }
// else if (prev_rot_state == 0b00) {
// // CW Rotation
// rotary_cw = true;
// }
// break;
// case 0b11:
// if (prev_rot_state == 0b01) {
// // CCW Rotation
// rotary_ccw = true;
// }
// else if (prev_rot_state == 0b10) {
// // CW Rotation
// rotary_cw = true;
// }
// break;
//
// default:
// rotary_ccw = false;
// rotary_cw = false;
// break;
// }
// prev_rot_state = rot_state;
// vTaskDelay(5/portTICK_RATE_MS);
// }
// }