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.
39 lines
489 B
39 lines
489 B
#ifndef TRXBOARDENUMS_H
|
|
#define TRXBOARDENUMS_H
|
|
|
|
#include <QObject>
|
|
|
|
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
|
|
};
|
|
|
|
#endif // TRXBOARDENUMS_H
|
|
|