wfview/rigidentities.h

58 wiersze
1007 B
C

#ifndef RIGIDENTITIES_H
#define RIGIDENTITIES_H
#include <QtNumeric>
#include <QString>
// Credit:
// http://www.docksideradio.com/Icom%20Radio%20Hex%20Addresses.htm
// 7850 and 7851 have the same commands and are essentially identical
enum model_kind {
model7100 = 0x88,
model7200 = 0x76,
model7300 = 0x94,
modelR8600 = 0x96,
model7600 = 0x7A,
model7610 = 0x98,
model7700 = 0x74,
model7800 = 0x6A,
model7850 = 0x8E,
model9700 = 0xA2,
model705 = 0xA4,
model706 = 0x58,
modelUnknown = 0xFF
};
model_kind determineRadioModel(unsigned char rigID);
struct rigCapabilities {
model_kind model;
quint8 civ;
quint8 modelID;
QString modelName;
bool hasLan; // OEM ethernet or wifi connection
bool hasEthernet;
bool hasWiFi;
bool hasSpectrum;
quint8 spectSeqMax;
quint16 spectAmpMax;
quint16 spectLenMax;
bool hasDD;
bool hasDV;
bool hasATU;
bool hasTransmit;
};
#endif // RIGIDENTITIES_H