-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathButtonHandler.cpp
More file actions
401 lines (339 loc) · 9.35 KB
/
ButtonHandler.cpp
File metadata and controls
401 lines (339 loc) · 9.35 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
// Button handler
#include "RadioControl.h"
#include "ButtonState.h"
//#define BTN_DEBUG
//////////////////////////////////////////////////////////////////////
// //
// Button Control Variables //
// //
//////////////////////////////////////////////////////////////////////
byte TuneButtonState = 0;
byte lastTuneButtonState = 0;
// Encoder button control
ButtonState EncButton(ButtonState::LONG_SUPPORT);
// Sideband select button control
ButtonState SideBandButton(ButtonState::NORMAL);
// Band Switch button control
ButtonState BandButton(ButtonState::NORMAL);
// VFO select button control
ButtonState VfoButton(ButtonState::NORMAL);
// PTT Control
byte PTTState = 0;
byte lastPTTState = 0;
// CW Control
#define CW_TX_OFF_TIMER 500 // milliseconds before releasing TX after cw tx
unsigned long cw_tx_time = 0;
// Helper function to get sideband from mode
byte GetSidebandFromMode(byte mode_val) {
switch (mode_val) {
case L_SSB:
#ifdef CW
case L_CW:
#endif
return LSB;
case U_SSB:
#ifdef CW
case U_CW:
#endif
return USB;
default:
return USB; // Default fallback
}
}
//
//********************* Set a new mode *************************************
// new mode select the mode and sets the proper sideband.
//
void SetMode(byte new_mode)
{
// Save new mode
mode = new_mode;
// Get sideband directly from mode
byte new_sideband = GetSidebandFromMode(new_mode);
// Apply the sideband settings (calls SetSB internally)
SetSB(new_sideband);
// Save the mode for the current VFO
switch (active_vfo) {
case VFOA:
vfoAmode = mode;
break;
case VFOB:
vfoBmode = mode;
break;
}
// Update the display to show the active mode
displayMode(mode);
}
//*********************Check Band ************************************
void SwapBand() {
uint32_t freq;
byte band_mode;
if (band == BAND20) { // Switch to 40 Meter Band
band = BAND40;
freq = band40Freq;
// Determine mode from stored sideband (for backward compatibility)
band_mode = (band40Sideband == LSB) ? L_SSB : U_SSB;
} else { // Switch to 20 Meter Band
band = BAND20;
freq = band20Freq;
// Determine mode from stored sideband (for backward compatibility)
band_mode = (band20Sideband == LSB) ? L_SSB : U_SSB;
}
// Set the active VFO to new frequency
switch (active_vfo) {
case VFOA:
vfoAfreq = freq;
// Keep the VFO's current mode if it matches the band's sideband
if (GetSidebandFromMode(vfoAmode) == GetSidebandFromMode(band_mode)) {
SetMode(vfoAmode);
} else {
SetMode(band_mode);
}
displayActVFO(vfoAfreq);
break;
case VFOB:
vfoBfreq = freq;
// Keep the VFO's current mode if it matches the band's sideband
if (GetSidebandFromMode(vfoBmode) == GetSidebandFromMode(band_mode)) {
SetMode(vfoBmode);
} else {
SetMode(band_mode);
}
displayActVFO(vfoBfreq);
break;
}
displayMode(mode);
startSettingsTimer();
}
void CheckBand() {
if ( BandButton.CheckButton(digitalRead(BAND_BTN)) == ButtonState::PRESSED )
{
#ifdef BTN_DEBUG
ToggleLED();
String msg = F("CheckBand");
displayBanner(msg);
#endif
SwapBand();
}
}
//*********************Change Modes *************************************
void ChangeMode() {
switch (mode) {
#ifndef CW
case L_SSB:
SetMode(U_SSB);
break;
case U_SSB:
SetMode(L_SSB);
break;
#else
case L_SSB:
SetMode(U_SSB);
break;
case U_SSB:
SetMode(L_CW);
break;
case L_CW:
SetMode(U_CW);
break;
case U_CW:
SetMode(L_SSB);
break;
#endif
}
}
//*********************Set a new sideband ************************************
void SetSB(byte sb) {
sideband = sb; // Keep this for hardware compatibility
bfo = (sb == USB ? USB_BFO : LSB_BFO);
//
// Keep track of which SSB is currently selected for current band
//
if (band == BAND20) {
band20Sideband = sideband;
} else {
band40Sideband = sideband;
}
//
// Change the clock frequency to the new bfo
//
setBFO(bfo);
//
// Set the active VFO to adjusted frequency
//
switch (active_vfo) {
case VFOA:
setVFO(vfoAfreq);
break;
case VFOB:
setVFO(vfoBfreq);
break;
}
// displayDebug("save mode="+String(mode));
startSettingsTimer();
}
void CheckMode() {
if ( SideBandButton.CheckButton(digitalRead(SIDEBAND_BTN)) == ButtonState::PRESSED )
ChangeMode();
}
//********************* Tune Button Handling ************************************
void DoTune() {
//
// Temp code - 30 second full duty tone for debugging circuits - cheap tone generator.
// Delay(12);
// tone(TONE_PIN, NOTE_B5);
// Delay(30000);
// noTone(TONE_PIN);
displayTune(true);
startTx(PTT_TUNE);
for (int i = 0; i < 100; i++) {
tone(TONE_PIN, NOTE_B5);
Delay(50);
// noTone(TONE_PIN); // Uncomment for pulsed output
Delay(50);
}
noTone(TONE_PIN);
stopTx();
displayTune(false);
}
//*********************Check if Tune Button pressed ****************
void CheckTune() {
TuneButtonState = digitalRead(TUNE_BTN); // creates a 10 second tuning pulse trani 50% duty cycle and makes TUNE appear on the screen
if (TuneButtonState != lastTuneButtonState) {
if (TuneButtonState == LOW) {
DoTune();
}
lastTuneButtonState = TuneButtonState;
Delay(50);
}
}
//*********************VFO switch******* VFO A or B ****************
void SwapVFO() {
// Save current VFO mode before switching
switch (active_vfo) {
case VFOA:
vfoAmode = mode;
break;
case VFOB:
vfoBmode = mode;
break;
}
// Switch to the other VFO and restore its mode
if (active_vfo == VFOA) {
active_vfo = VFOB;
SetMode(vfoBmode); // This will set mode, sideband, BFO, etc.
} else {
active_vfo = VFOA;
SetMode(vfoAmode); // This will set mode, sideband, BFO, etc.
}
#ifdef BTN_DEBUG
ToggleLED();
String msg = F("SwapVFO: active_vfo=");
msg += active_vfo;
msg += F(" mode=");
msg += mode;
displayBanner(msg);
#endif
//
// Swap Active/Alternate frequency displays
//
switch (active_vfo) {
case VFOA:
displayActVFO(vfoAfreq);
displayAltVFO(vfoBfreq);
break;
case VFOB:
displayActVFO(vfoBfreq);
displayAltVFO(vfoAfreq);
break;
}
displayVFOAB(active_vfo); // Change the A/B indicator
startSettingsTimer();
}
//********************* Check if Swap VFO pressed ****************
void CheckVFO() {
if ( VfoButton.CheckButton(digitalRead(VFO_BTN)) == ButtonState::PRESSED )
SwapVFO();
}
// startSplit
// Turn on split mode and update the display
void startSplit() {
split = true;
displaySplit(split);
}
// Turnb off split mode and update the display
void stopSplit() {
split = false;
displaySplit(split);
}
// startTx
// if split mode is on swap Act and Alt VFO
// Put the rig in to TX by triggering the PTT pin
// Update the display to Tx
void startTx(byte PTT_source) {
if (split) SwapVFO();
digitalWrite(PTT,HIGH);
displayTxRx(TX);
TxRxState = TX;
txSource = PTT_source;
}
// stopTx
// Return the rig to Rx by lowering the PTT pin
// If split mode is on swap Act and Alt VFO
// Update the display to Tx
void stopTx() {
digitalWrite(PTT,LOW);
if (split) SwapVFO();
displayTxRx(RX);
TxRxState = RX;
}
//********************* PTT ****************************
void CheckPTT(){
if ((TxRxState==TX) && (txSource != PTT_MIC)) {
return;
}
TxRxState = digitalRead(PTT_SENSE);
if(TxRxState != lastTxRxState){
if(TxRxState == TX){
startTx(PTT_MIC);
} else {
if (txSource == PTT_MIC) {
stopTx();
}
}
lastTxRxState = TxRxState;
Delay(50);
}
}
#ifdef CW
//********************* CW key down ****************************
void CheckCW() {
if ( mode != L_CW && mode != U_CW )
return;
CwTxRxState = digitalRead(KEY_IN);
// Keep the PA up between CW keydowns
if ((TxRxState==TX) && (txSource == PTT_CW) && (CwTxRxState != TX)) {
if ((millis() - CW_TX_OFF_TIMER) > cw_tx_time) {
// displayDebug("");
stopTx();
digitalWrite(CW_OUT,LOW);
setCW(false, CW_TONE);
}
}
// Transition states between key up and key down.
if(CwTxRxState != lastCwTxRxState){
if (CwTxRxState == TX) {
// displayDebug("CW TX");
setCW(true, CW_TONE);
startTx(PTT_CW); // key the transmitter
digitalWrite(CW_OUT,HIGH); // power the audio amp, switch tune tone as input
cw_tx_time = millis(); // reset the PA tx timer.
tone(TONE_PIN, CW_TONE);
} else {
noTone(TONE_PIN);
}
lastCwTxRxState = CwTxRxState;
Delay(50);
}
}
#endif