You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef TRXBOARDENUMS_H
|
|
|
|
#define TRXBOARDENUMS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
enum eSramClear : bool
|
|
|
|
{
|
|
|
|
all = false,
|
|
|
|
first4M = true
|
|
|
|
};
|
|
|
|
|
|
|
|
enum eEmulatorOption : bool
|
|
|
|
{
|
|
|
|
performance = false,
|
|
|
|
functionality = true
|
|
|
|
};
|
|
|
|
|
|
|
|
enum eEmulatorMode : bool
|
|
|
|
{
|
|
|
|
statically = false,
|
|
|
|
dynamically = true
|
|
|
|
};
|
|
|
|
|
|
|
|
enum eAfePwrdnMode : bool
|
|
|
|
{
|
|
|
|
afePwrdnDisable = false,
|
|
|
|
afePwrdnEnable = true
|
|
|
|
};
|
|
|
|
|
|
|
|
enum eSelectProbe : quint8
|
|
|
|
{
|
|
|
|
prbA = 1,
|
|
|
|
prbB,
|
|
|
|
prbC,
|
|
|
|
prbD
|
|
|
|
};
|
|
|
|
|
|
|
|
enum eSlaveSelect : quint8
|
|
|
|
{
|
|
|
|
slave0,
|
|
|
|
slave1,
|
|
|
|
slave2
|
|
|
|
};
|
|
|
|
|
|
|
|
enum eConnectionMode : bool
|
|
|
|
{
|
|
|
|
disconnected = false,
|
|
|
|
connected = true
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TRXBOARDENUMS_H
|