-
Notifications
You must be signed in to change notification settings - Fork 0
/
nixieDisplay.c
362 lines (336 loc) · 10.6 KB
/
nixieDisplay.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
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
/*
* nixieDisplay.c
*
* Created on: 24 ene. 2019
* Author: Manuel
*/
#include "nixieDisplay.h"
extern I2C_HandleTypeDef hi2c2;
extern TIM_HandleTypeDef htim2;
extern TIM_HandleTypeDef htim3;
extern TIM_HandleTypeDef htim4;
static Nixie Clock;
static uint8_t LedFlag=1;
static uint8_t LedPower=1;
static uint8_t BuzzerFlag=0;
static uint8_t Led[5];
static uint8_t LedIndex=0;
static uint8_t DisplayIndex=0;
static uint8_t NixiePower=1;
struct state_timer {
void *sm_handle;
sc_eventid ev_id;
raise_event_cb_t cb;
uint32_t timeout;
uint32_t expires;
bool periodic;
};
static struct state_timer timers[MAX_NUM_TIMERS] = {0};
void resetGpio(){
HAL_GPIO_WritePin(LedRed_GPIO_Port,LedRed_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(LedGreen_GPIO_Port,LedGreen_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(LedBlue_GPIO_Port,LedBlue_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(BL_GPIO_Port,BL_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_0_GPIO_Port,NixieCrl_0_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_1_GPIO_Port,NixieCrl_1_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_2_GPIO_Port,NixieCrl_2_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_3_GPIO_Port,NixieCrl_3_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_4_GPIO_Port,NixieCrl_4_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_5_GPIO_Port,NixieCrl_5_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_0_GPIO_Port,Nixie_0_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_1_GPIO_Port,Nixie_1_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_2_GPIO_Port,Nixie_2_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_3_GPIO_Port,Nixie_3_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_4_GPIO_Port,Nixie_4_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_5_GPIO_Port,Nixie_5_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_6_GPIO_Port,Nixie_6_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_7_GPIO_Port,Nixie_7_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_8_GPIO_Port,Nixie_8_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_9_GPIO_Port,Nixie_9_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_DP_GPIO_Port,Nixie_DP_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_LP_GPIO_Port,Nixie_LP_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_P_GPIO_Port,NixieCrl_P_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Buzzer_GPIO_Port,Buzzer_Pin,GPIO_PIN_RESET);
}
void resetVarNixie(){
LedFlag=1;
LedPower=1;
BuzzerFlag=0;
LedIndex=0;
DisplayIndex=0;
NixiePower=1;
Led[N_TIME]=BLACK;
Led[N_DATE]=GREEN;
Led[N_TEMP]=BLUE;
Led[N_ALARM]=RED;
Led[N_ALARM_STATE]=RED;
}
void nixieLed(){
if(LedFlag && LedPower){
if((Led[LedIndex]>>2)&0x01){
HAL_GPIO_WritePin(LedRed_GPIO_Port,LedRed_Pin,GPIO_PIN_SET);
}else{
HAL_GPIO_WritePin(LedRed_GPIO_Port,LedRed_Pin,GPIO_PIN_RESET);
}
if((Led[LedIndex]>>1)&0x03){
HAL_GPIO_WritePin(LedGreen_GPIO_Port,LedGreen_Pin,GPIO_PIN_SET);
}else{
HAL_GPIO_WritePin(LedGreen_GPIO_Port,LedGreen_Pin,GPIO_PIN_RESET);
}
if((Led[LedIndex]>>0)&0x03){
HAL_GPIO_WritePin(LedBlue_GPIO_Port,LedBlue_Pin,GPIO_PIN_SET);
}else{
HAL_GPIO_WritePin(LedBlue_GPIO_Port,LedBlue_Pin,GPIO_PIN_RESET);
}
HAL_GPIO_WritePin(BL_GPIO_Port,BL_Pin,GPIO_PIN_SET);
}else{
HAL_GPIO_WritePin(LedBlue_GPIO_Port,LedBlue_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(LedGreen_GPIO_Port,LedGreen_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(LedRed_GPIO_Port,LedRed_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(BL_GPIO_Port,BL_Pin,GPIO_PIN_RESET);
}
}
void nixieDisplay(){
uint8_t *display;
static uint8_t PWM=0;
static uint8_t digit=0;
if((PWM < DUTY) && (NixiePower)){ // duty 10%
display=Display(DisplayIndex);
HAL_GPIO_WritePin(Nixie_0_GPIO_Port,Nixie_0_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_1_GPIO_Port,Nixie_1_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_2_GPIO_Port,Nixie_2_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_3_GPIO_Port,Nixie_3_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_4_GPIO_Port,Nixie_4_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_5_GPIO_Port,Nixie_5_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_6_GPIO_Port,Nixie_6_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_7_GPIO_Port,Nixie_7_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_8_GPIO_Port,Nixie_8_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_9_GPIO_Port,Nixie_9_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_DP_GPIO_Port,Nixie_DP_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(Nixie_LP_GPIO_Port,Nixie_LP_Pin,GPIO_PIN_RESET);
switch(display[digit]){
case 0:
HAL_GPIO_WritePin(Nixie_0_GPIO_Port,Nixie_0_Pin,GPIO_PIN_SET);
break;
case 1:
HAL_GPIO_WritePin(Nixie_1_GPIO_Port,Nixie_1_Pin,GPIO_PIN_SET);
break;
case 2:
HAL_GPIO_WritePin(Nixie_2_GPIO_Port,Nixie_2_Pin,GPIO_PIN_SET);
break;
case 3:
HAL_GPIO_WritePin(Nixie_3_GPIO_Port,Nixie_3_Pin,GPIO_PIN_SET);
break;
case 4:
HAL_GPIO_WritePin(Nixie_4_GPIO_Port,Nixie_4_Pin,GPIO_PIN_SET);
break;
case 5:
HAL_GPIO_WritePin(Nixie_5_GPIO_Port,Nixie_5_Pin,GPIO_PIN_SET);
break;
case 6:
HAL_GPIO_WritePin(Nixie_6_GPIO_Port,Nixie_6_Pin,GPIO_PIN_SET);
break;
case 7:
HAL_GPIO_WritePin(Nixie_7_GPIO_Port,Nixie_7_Pin,GPIO_PIN_SET);
break;
case 8:
HAL_GPIO_WritePin(Nixie_8_GPIO_Port,Nixie_8_Pin,GPIO_PIN_SET);
break;
case 9:
HAL_GPIO_WritePin(Nixie_9_GPIO_Port,Nixie_9_Pin,GPIO_PIN_SET);
break;
}
switch(digit){
case 0:
HAL_GPIO_WritePin(NixieCrl_0_GPIO_Port,NixieCrl_0_Pin,GPIO_PIN_SET);
break;
case 1:
HAL_GPIO_WritePin(NixieCrl_1_GPIO_Port,NixieCrl_1_Pin,GPIO_PIN_SET);
break;
case 2:
HAL_GPIO_WritePin(NixieCrl_2_GPIO_Port,NixieCrl_2_Pin,GPIO_PIN_SET);
break;
case 3:
HAL_GPIO_WritePin(NixieCrl_3_GPIO_Port,NixieCrl_3_Pin,GPIO_PIN_SET);
break;
case 4:
if(DisplayIndex!=N_TEMP){
HAL_GPIO_WritePin(NixieCrl_4_GPIO_Port,NixieCrl_4_Pin,GPIO_PIN_SET);
}
break;
case 5:
if(DisplayIndex!=N_TEMP){
HAL_GPIO_WritePin(NixieCrl_5_GPIO_Port,NixieCrl_5_Pin,GPIO_PIN_SET);
}
break;
}
if(DisplayIndex==N_TEMP){
HAL_GPIO_WritePin(NixieCrl_P_GPIO_Port,NixieCrl_P_Pin,GPIO_PIN_RESET);
if(digit==1){
HAL_GPIO_WritePin(Nixie_LP_GPIO_Port,Nixie_LP_Pin,GPIO_PIN_SET);
}
if((digit==3) && (display[4]==1)){
HAL_GPIO_WritePin(Nixie_LP_GPIO_Port,Nixie_LP_Pin,GPIO_PIN_SET);
}
}else{
HAL_GPIO_WritePin(NixieCrl_P_GPIO_Port,NixieCrl_P_Pin,GPIO_PIN_SET);
}
digit++;
digit%=6;
}else{
HAL_GPIO_WritePin(NixieCrl_0_GPIO_Port,NixieCrl_0_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_1_GPIO_Port,NixieCrl_1_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_2_GPIO_Port,NixieCrl_2_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_3_GPIO_Port,NixieCrl_3_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_4_GPIO_Port,NixieCrl_4_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(NixieCrl_5_GPIO_Port,NixieCrl_5_Pin,GPIO_PIN_RESET);
}
PWM++;
PWM%=10;
}
void nixieIface_increase(const Nixie* handle, const int32_t Type, const int32_t Unit){
increase(Type,Unit);
}
void nixieIface_show(const Nixie* handle, const int32_t State){
DisplayIndex=State;
}
void nixieIface_increaseLed(const Nixie* handle){
Led[N_TIME]++;
Led[N_TIME]%=0x08;
}
void nixieIface_init(const Nixie* handle){
HAL_TIM_Base_Start_IT(&htim2);
HAL_TIM_Base_Start_IT(&htim3);
HAL_TIM_Base_Start_IT(&htim4);
setConfigRTC(&hi2c2);
resetVarRTC();
resetVarNixie();
}
void nixieIface_showLed(const Nixie* handle, const int32_t State){
LedIndex=State;
}
void nixieIface_ledPower(const Nixie* handle, const int32_t State){
LedPower=State;
}
void nixieIface_send(const Nixie* handle, const int32_t State){
setRTC(&hi2c2,State);
}
void nixieIface_nixiePower(const Nixie* handle, const int32_t State){
NixiePower=State;
}
void nixieIface_buzzer(const Nixie* handle, const int32_t State){
BuzzerFlag=State;
}
void nixieIface_swapAlarm(const Nixie* handle){
Led[N_ALARM_STATE]=enableAlarm(&hi2c2)? GREEN: RED;
}
void nixieIface_swapLedFlag(const Nixie* handle){
LedFlag=~LedFlag;
}
void nixieIface_alarmFlag(const Nixie* handle){
stopAlarm(&hi2c2);
}
void nixieIface_resetVar(const Nixie* handle){
resetVarRTC();
}
void nixie_setTimer(Nixie* handle, const sc_eventid evid, const sc_integer time_ms, const sc_boolean periodic){
stateTimer_start(handle, evid, (raise_event_cb_t) nixie_raiseTimeEvent, time_ms, periodic);
}
void nixie_unsetTimer(Nixie* handle, const sc_eventid evid){
stateTimer_stop(evid);
}
void nixieInit(){
nixie_init(&Clock);
nixie_enter(&Clock);
nixie_runCycle(&Clock);
}
void nixieEvent(uint8_t event){
switch (event){
case E_B1 :
nixieIface_raise_b_1(&Clock);
break;
case E_B2 :
nixieIface_raise_b_2(&Clock);
break;
case E_B3 :
nixieIface_raise_b_3(&Clock);
break;
case E_ALARM :
nixieIface_raise_e_ALARM(&Clock);
break;
case E_SENSOR :
nixieIface_raise_s_SENSOR(&Clock);
break;
}
nixie_runCycle(&Clock);
}
uint8_t stateTimer_start(void *sm_handle, sc_eventid ev_id, raise_event_cb_t cb,
uint32_t timeout, bool periodic)
{
if ((sm_handle == NULL) || (ev_id == NULL) || (cb == NULL)) {
return ERROR;
}
for (uint8_t i = 0; i < NELEMENTS(timers); i++) {
if (timers[i].ev_id == ev_id) {
return ERROR; // existing event
}
if (timers[i].ev_id == NULL) {
timers[i].sm_handle = sm_handle;
timers[i].ev_id = ev_id;
timers[i].cb = cb;
timers[i].timeout = timeout;
timers[i].expires = timeout;
timers[i].periodic = periodic;
return SUCCESS;
}
}
return ERROR; // no free timer
}
void stateTimer_update(void)
{
for (uint8_t i = 0; i < NELEMENTS(timers); i++) {
if (timers[i].ev_id != NULL) {
if (timers[i].expires != 0) {
timers[i].expires--;
}
else {
timers[i].cb(timers[i].sm_handle, timers[i].ev_id);
if (timers[i].periodic) {
timers[i].expires = timers[i].timeout;
}
else {
timers[i].ev_id = NULL;
}
}
}
}
}
uint8_t stateTimer_stop(sc_eventid ev_id)
{
for (uint8_t i = 0; i < NELEMENTS(timers); i++) {
if (timers[i].ev_id == ev_id) {
timers[i].ev_id = NULL;
return SUCCESS;
}
}
return ERROR; // no timer associated to that event
}
void nixieTickUpdate(){
stateTimer_update();
nixie_runCycle(&Clock);
}
uint8_t nixieBuzzer(uint8_t Period, uint8_t Activity){
static uint8_t aux=0;
if (Activity>Period){
return ERROR;
}else{
if((BuzzerFlag) && (aux<Activity)){
HAL_GPIO_TogglePin(Buzzer_GPIO_Port,Buzzer_Pin);
}else{
HAL_GPIO_WritePin(Buzzer_GPIO_Port,Buzzer_Pin,GPIO_PIN_RESET);
}
aux++;
aux%=Period;
return SUCCESS;
}
}