Update main.cpp

This commit is contained in:
AlexandreRouma 2021-08-20 20:41:54 +02:00 committed by GitHub
parent 6ab59ad3c5
commit 271d1f9240
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -490,32 +490,32 @@ private:
} }
else if (parts[0] == "m" || parts[0] == "\\get_mode") { else if (parts[0] == "m" || parts[0] == "\\get_mode") {
std::lock_guard lck(vfoMtx); std::lock_guard lck(vfoMtx);
resp = "RAW\n"; resp = "RAW ";
if (!selectedVfo.empty() && core::modComManager.getModuleName(selectedVfo) == "radio") { if (!selectedVfo.empty() && core::modComManager.getModuleName(selectedVfo) == "radio") {
int mode; int mode;
core::modComManager.callInterface(selectedVfo, RADIO_IFACE_CMD_GET_MODE, NULL, &mode); core::modComManager.callInterface(selectedVfo, RADIO_IFACE_CMD_GET_MODE, NULL, &mode);
if (mode == RADIO_IFACE_MODE_NFM) { if (mode == RADIO_IFACE_MODE_NFM) {
resp = "FM\n"; resp = "FM ";
} }
else if (mode == RADIO_IFACE_MODE_WFM) { else if (mode == RADIO_IFACE_MODE_WFM) {
resp = "WFM\n"; resp = "WFM ";
} }
else if (mode == RADIO_IFACE_MODE_AM) { else if (mode == RADIO_IFACE_MODE_AM) {
resp = "AM\n"; resp = "AM ";
} }
else if (mode == RADIO_IFACE_MODE_DSB) { else if (mode == RADIO_IFACE_MODE_DSB) {
resp = "DSB\n"; resp = "DSB ";
} }
else if (mode == RADIO_IFACE_MODE_USB) { else if (mode == RADIO_IFACE_MODE_USB) {
resp = "USB\n"; resp = "USB ";
} }
else if (mode == RADIO_IFACE_MODE_CW) { else if (mode == RADIO_IFACE_MODE_CW) {
resp = "CW\n"; resp = "CW ";
} }
else if (mode == RADIO_IFACE_MODE_LSB) { else if (mode == RADIO_IFACE_MODE_LSB) {
resp = "LSB\n"; resp = "LSB ";
} }
} }