-
Notifications
You must be signed in to change notification settings - Fork 1
/
menu.c
270 lines (216 loc) · 4.61 KB
/
menu.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
#include "menu.h"
#include "lcd_3_wire.h"
#include "transistor.h"
#include "resistencia.h"
#include "funcions_LC.h"
#include "freq_counter.h"
#include <avr/pgmspace.h>
#include <string.h>
#include <stdio.h>
#define MENU1 1
#define MENU2 2
// Strings emmagatzemats a la ROM
char menu1_C[] PROGMEM = "1.Condensador ";
char menu1_L[] PROGMEM = "2.Inductancia ";
char menu1_R[] PROGMEM = "3.Resistencia ";
char menu1_T[] PROGMEM = "4.Transistor ";
char menu2_Llegir[] PROGMEM = "LLEGIR ";
char menu2_Cal[] PROGMEM = "CAL ";
char menu2_Enrere[] PROGMEM = "ENRERE ";
PGM_P menu1_strings[] PROGMEM =
{
menu1_C,
menu1_L,
menu1_R,
menu1_T
};
PGM_P menu2_strings[] PROGMEM =
{
menu2_Llegir,
menu2_Cal,
menu2_Enrere
};
enum menu2_estats
{
LLEGIR,
CAL,
ENRERE
};
static uint8_t menu1 = 0; // menu1 actiu opcio1
static uint8_t menu2 = 0;
static uint8_t menu_flag = MENU1; //inicialment carreguem menu1
char string[17];
// funcions de lectura
static void llegir_transistor(void)
{
struct bjt transistor;
char pins[3];
if (transistor_check(&transistor))
{
calculate_beta(&transistor);
pins[transistor.base-1] = 'B';
pins[transistor.colector-1] = 'C';
pins[transistor.emisor-1] = 'E';
sprintf(string, "1:%c 2:%c 3:%c %s", pins[0], pins[1], pins[2],
transistor.tipus == NPN ? "NPN" : "PNP" );
LCDWriteStringXY(0, 0, string);
sprintf(string, "Beta:%4d ", transistor.beta);
LCDWriteStringXY(0, 1, string);
}
}
static void llegir_condensador(void)
{
float calcul;
char unitat;
calcul = calcula_C();
// ajusta la unitat del valor calculat
if (calcul<1.0)
{
calcul=calcul*1000.0;
unitat = 'n';
if (calcul<1.0)
{
calcul=calcul*1000.0;
unitat = 'p';
}
}
else
{
unitat = 'u';
}
sprintf(string,"C: %3.2f%cF ",calcul,unitat);
LCDWriteStringXY(0,0, string );
}
static void llegir_inductancia(void)
{
float calcul;
char unitat;
if ( llegir_switch() == L )
{
// es calcula el valor de inductancia
calcul = calcula_L();
// ajusta la unitat del valor calculat
if (calcul<1.0)
{
calcul=calcul*1000.0;
unitat = 'n';
}
else if ( calcul > 1000.0 )
{
calcul=calcul/1000.0;
unitat = 'm';
}
else
{
unitat = 'u';
}
sprintf(string,"L: %03.2f%cH ",calcul,unitat);
LCDWriteStringXY(0,0,string);
}
else
{
sprintf(string, "ERROR -> SWITCH ");
LCDWriteStringXY(0,0,string);
}
}
static void llegir_resistencia(void)
{
struct res r;
uint8_t i;
calcula_r(&r);
sprintf(string,"R:%lu",r.valor);
LCDWriteStringXY(0, 0, string);
for(i=strlen(string); i < 16; i++) LCDData(' ');
LCDWriteStringXY(0, 1, string);
}
// funcions de calibració
static void cal_condensador(void)
{
calibra_LC();
}
static void cal_inductancia(void)
{
calibra_LC();
}
static void cal_resistencia(void)
{
}
// punters a funcions per fer el codi del menu més compacte i entenedor
void (*llegir_f_ptr[4])(void) =
{
&llegir_condensador,
&llegir_inductancia,
&llegir_resistencia,
&llegir_transistor
};
void (*cal_f_ptr[4])(void) =
{
&cal_condensador,
&cal_inductancia,
&cal_resistencia,
NULL,
};
static void menu1_print(uint8_t i)
{
memset(string, '\0', sizeof(string));
LCDClear();
strcpy_P(string, (PGM_P)pgm_read_word(&(menu1_strings[i]))); // copiem el valor al string
LCDWriteStringXY(0, 0, string);
}
static void menu2_print(uint8_t i)
{
memset(string, '\0', sizeof(string));
strcpy_P(string, (PGM_P)pgm_read_word(&(menu2_strings[i]))); // copiem el valor al string
LCDWriteStringXY(0, 1, string);
}
void menu_init()
{
menu1_print(0); // escriu el primer valor al LCD
}
void menu(polsador_t tecla)
{
if (tecla == P_MES)
{
if ( menu_flag == MENU1 )
{
menu1++;
menu1 = menu1 % 4; // tenim 4 opcions al menu1
menu1_print(menu1);
}
else
{
menu2++;
menu2 = menu2 % 3;// tenim 3 opcions al menu2
menu2_print(menu2);
}
}
else if (tecla == P_OK)
{
// si estem dins del menu1 anem al menu2
if ( menu_flag == MENU1 )
{
menu_flag = MENU2;
menu2_print(menu2);
}
// si estem dins del menu2 executem l'accio
else
{
switch (menu2)
{
// s'ha seleccionat llegir
case LLEGIR:
(*llegir_f_ptr[menu1])();
break;
// s'ha seleccionat calibrar
case CAL:
(*cal_f_ptr[menu1])();
break;
case ENRERE:
menu_flag = MENU1;
menu2 = 0; // reiniciem el contador del menu2
menu1_print(menu1);
break;
}
}
}
}