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.

347 lines
7.4 KiB

4 years ago
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
4 years ago
#include <QTimer>
#include <QTime>
4 years ago
#include <QLabel>
#include <QList>
4 years ago
#include <QString>
4 years ago
#include <QDebug>
#include <QSettings>
#include <QtConcurrent/QtConcurrent>
#include <QMessageBox>
#include <QFileDialog>
#include <QColormap>
#include <QProgressDialog>
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <QFuture>
#include <QFutureWatcher>
#include <QMovie>
#include <QElapsedTimer>
#include "qcustomplot.h"
4 years ago
#include "include/model/hardware/core/TrxBoard.h"
#include "hdf5Scenario/hdf5Scenario.h"
4 years ago
#include "api.h"
#define MESSAGE_BOX(M) \
emit showMessage(M)
#define SCENARIO_FILE_PATH "scenarioFilePath"
#define BITE_SCEN_FILE_PATH "biteScenarioFilePath"
#define FRAME_LOG_PATH "frameLogPath"
#define ADC_LOG_PATH "adcLogPath"
#define BITE_FILE_PATH "biteFilePath"
#define FPGA_FILE_PATH "fpgaFilePath"
#define REG_ACCESS_SEL "regAccessType"
4 years ago
#define START "Start"
#define STOP "Stop"
#define PAUSE "Pause"
#define RESUME "Resume"
#define ON "On"
#define OFF "Off"
#define THSD_State_Update "THSD State Update"
#define DACS_ENABLE "DACs_Enable"
#define UPDATE "Update"
#define VALID "Valid"
#define ENABLE "Enable"
#define DISABLE "Disable"
#define LOG_COUNT_FROM_FIRST 50U
#define TRANSFER_LENGTH 128 * 1024
#define TRANSFER_RATE 30.0f
#define RAM_BUFFER_OFFSET 0U
4 years ago
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
using namespace std;
4 years ago
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
4 years ago
Ui::MainWindow *ui;
TrxBoard _trx;
4 years ago
QMovie *movie;
4 years ago
QSettings* _settings;
UltraSoundDevice* _usd;
QMutex _mutex;
QCPColorMap *_colorMap;
QFutureWatcher<void> biteLogWatcher;
QFutureWatcher<void> dmaLogWatcher;
QFutureWatcher<void> programWatcher;
static QThread* _uiThread;
QFile* _headerLogFile;
QTimer* _timeout;
QEventLoop loop;
QTimer delayTimer;
4 years ago
EmulatorProperties* _emul;
4 years ago
BoardsCtrlMngt* _bCtrl;
SupervisorRbValue* _supRbValue;
MpsFaultStatus* _faultStatus;
HealthStatus* _healStatus;
4 years ago
FpgaCodeVersion* _version;
StatusVec* _vec;
PrbCase* _prb;
void setScenarioCompare(const QString& scenPath);
4 years ago
void timeout();
void delay(quint16 ms);
const QString enum2String (ePg state) const;
4 years ago
void changeLabelTextColor(QLabel* label, QColor color);
void setAfeConfig (void);
void logPcie(QString logPath, quint32 logCount);
void continuousFrameRepresent(void);
QByteArray str2ByteArray (QString& str);
QString uint2IdString (quint32& id);
QString byteArray2InfoString (QByteArray& arr);
QString releaseCodeVersion (quint32 &value);
void getProbeColor (const QBrush brush, const int item);
void biteLogThreadFinished();
void dmaLogThreadFinished();
void dmaLogLayoutVisible(bool show);
void fpgaProgram(QString &path);
void programThreadFinish();
QString _fpgaProgramFolder = "/home/hasis/Desktop/hardware/hwCode";
QString _scenarioFolder = "/home/hasis/Desktop/hardware/Scenarios";
QString _emulFolder = "/home/hasis/Desktop/hardware/emulator";
QString _BITeScenFolder = "/home/hasis/Desktop/hardware/BITe_IQ";
QString _BITeIqFolder = "/home/hasis/Desktop/hardware/BITe_IQ";
QString _frameLogFolder = "/home/hasis/Desktop/hardware/Log/DMA";
QString _biteLogFolder = "/home/hasis/Desktop/hardware/Log/BITe";
QString _adcLoggerFolder = "/home/hasis/Desktop/hardware/Log/ADC";
QString _headerLogPath = "/home/hasis/Desktop/hardware/Log/frameHeader/headerLog.csv";
QVector<QByteArray> _dmaBuffer;
QByteArray _lastBuffer;
QList<QByteArray> _frame;
QList<QByteArray> _bufferedFrame;
quint32 _dmaLogCount;
quint16 _frameCount;
quint16 _batchIdBuff;
double_t fps;
double_t fpsBuf;
bool _dmaLog;
bool _dmaRun;
bool _dmaShow;
bool _headerLogEn;
bool _fpsFlag;
bool _firstFrameEn;
bool _programFlag;
// uncrustify off
4 years ago
private slots:
void exitApp();
void setScenario(const string& h5Path);
void getFramePacket (QByteArray packet);
void getSramBinaryCreateFlag (void);
void getRegisterCsvCompareFlag (void);
void getSramVerifyMessage(QString message);
void getPrbChange();
void getFrameLost();
void getLabelState(QLabel* label, QString str, QColor color);
void getProgrammingGif(void);
4 years ago
void on_rbtn_reg_toggled(bool checked);
void on_rbtn_offset_toggled(bool checked);
void on_btn_readReg_clicked();
void on_btn_writeReg_clicked();
void on_btn_fpgaBrowse_clicked();
void on_btn_fpgaProgram_clicked();
void newMessage(QString message);
void on_cb_selectedProbe_currentIndexChanged(int index);
void on_btn_updateRdbackValue_clicked();
void on_btn_supJump_clicked();
4 years ago
void on_btn_setAo_clicked();
4 years ago
4 years ago
void on_btn_getFpgaVersion_clicked();
4 years ago
void on_btn_setAtgcMode_clicked();
void on_btn_scenStart_clicked();
void on_btn_emulator_clicked();
void on_btn_dmaShow_clicked();
void on_btn_dmaLogLast_clicked();
void on_btn_afeRead_clicked();
void on_chk_continuousShowing_clicked();
void show3d();
void show2d();
void catchLogCount(quint32 counter, quint32 logRange, QProgressDialog* _progress);
void on_chk_mpsInit_clicked();
void on_btn_scenBrowse_clicked();
void on_btn_setScenario_clicked();
void on_btn_setScenVerification_clicked();
void on_btn_setIdx_clicked();
void on_btn_trxRomInfoWrite_clicked();
void on_btn_trxRomIdWrite_clicked();
void on_btn_mpsRomIdWrite_clicked();
void on_btn_mpsRomInfoWrite_clicked();
void on_btn_prbCtrlRomIdWrite_clicked();
void on_btn_prbCtrlRomInfoWrite_clicked();
void on_btn_prbRomImpulseRead_clicked();
void on_btn_trxRomIdRead_clicked();
void on_btn_trxRomInfoRead_clicked();
void on_btn_mpsRomIdRead_clicked();
void on_btn_mpsRomInfoRead_clicked();
void on_btn_prbCtrlRomIdRead_clicked();
void on_btn_prbCtrlRomInfoRead_clicked();
void on_btn_prbRomIdRead_clicked();
void on_btn_scenInfo_clicked();
void on_btn_setBiteLog_clicked();
void on_btn_biteBrowse_clicked();
4 years ago
void on_btn_setAdcLog_clicked();
4 years ago
void on_btn_gtReg_clicked();
void on_btn_frameLogBrowse_clicked();
void on_btn_biteScenBrowse_clicked();
void on_chk_logCountEn_clicked(bool checked);
void on_chk_syncAdcLog_clicked(bool checked);
void on_chk_scenFrameAdcLog_clicked(bool checked);
void on_chk_pulserTstModeEn_clicked(bool checked);
void on_chk_afeConfig_clicked(bool checked);
void on_cb_syncMode_currentIndexChanged(int index);
void on_btn_adcLogBrowse_clicked();
void on_btn_biteSetScenario_clicked();
void on_btn_biteIQ_clicked();
void on_cb_pulserTstMode_currentIndexChanged(int index);
void on_chk_headerLogEn_clicked(bool checked);
signals:
4 years ago
void showMessage(QString message);
void threeDReady();
void twoDReady();
void sendLogCount(quint32 counter, quint32 logRange, QProgressDialog* _progress);
void connectedPrbChange();
void frameLostCall();
void labelState(QLabel* label, QString str, QColor color);
void scenarioReady(const string& h5Path);
void programmingGif();
4 years ago
};
#endif // MAINWINDOW_H