mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2025-02-21 06:57:27 -05:00
Update includes, and make VFO switch explicit
This commit is contained in:
parent
7d84ab744b
commit
0091a1e17a
@ -1,7 +1,8 @@
|
|||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include "settings.h"
|
|
||||||
#include "ubitx.h"
|
|
||||||
#include "nano_gui.h"
|
#include "nano_gui.h"
|
||||||
|
#include "scratch_space.h"
|
||||||
|
#include "settings.h"
|
||||||
|
#include "tuner.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The CAT protocol is used by many radios to provide remote control to comptuers through
|
* The CAT protocol is used by many radios to provide remote control to comptuers through
|
||||||
@ -336,11 +337,12 @@ void processCATCommand2(byte* cmd) {
|
|||||||
case 0x81:
|
case 0x81:
|
||||||
//toggle the VFOs
|
//toggle the VFOs
|
||||||
response[0] = 0;
|
response[0] = 0;
|
||||||
if (VFO_A == globalSettings.activeVfo)
|
if (Vfo_e::VFO_A == globalSettings.activeVfo){
|
||||||
switchVFO(VFO_B);
|
globalSettings.activeVfo = Vfo_e::VFO_B;
|
||||||
else
|
}
|
||||||
switchVFO(VFO_A);
|
else{
|
||||||
//menuVfoToggle(1); // '1' forces it to change the VFO
|
globalSettings.activeVfo = Vfo_e::VFO_A;
|
||||||
|
}
|
||||||
Serial.write(response,1);
|
Serial.write(response,1);
|
||||||
updateDisplay();
|
updateDisplay();
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user