diff --git a/developHw.pro b/developHw.pro index 215fa3a..8aebdbe 100644 --- a/developHw.pro +++ b/developHw.pro @@ -25,7 +25,6 @@ SOURCES += \ $$files(hdf5Scenario/*.cpp, true) \ HEADERS += \ - include/model/hardware/core/register/misc/registerDefinition/FrameLostCount.h \ mainwindow.h \ qcustomplot.h \ api.h \ diff --git a/developHw.pro.user b/developHw.pro.user index f0c0ffa..68ed03c 100644 --- a/developHw.pro.user +++ b/developHw.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId diff --git a/include/model/hardware/core/TrxBoard.h b/include/model/hardware/core/TrxBoard.h index c94213d..1ba9c4d 100644 --- a/include/model/hardware/core/TrxBoard.h +++ b/include/model/hardware/core/TrxBoard.h @@ -77,6 +77,7 @@ private: BeamFormer* _beamFormerSlave1; BeamFormer* _beamFormerSlave2; BoardsCtrlMngt* _bCtrlMngt; + FpgaProgram* _fpgaProgram; ScenPalyer* _scenPlayer; BpiFlash* _bpiFlash; Afe* _afeSlave0; @@ -86,9 +87,6 @@ private: Misc* _misc; Sram* _sram; Dsp* _dsp; -#ifndef DEVELOP_UI - FpgaProgram* _fpgaProgram; -#endif enum eScenParams : quint8 { @@ -158,6 +156,10 @@ signals: public: +#ifndef DEVELOP_UI + HardwarePacketEngine packetEngine; +#endif + TrxBoard(); ~TrxBoard(); @@ -234,12 +236,6 @@ public: /////////////////////////////// DMA Data Packet //////////////////////////////////// void readData(); -#ifdef DEVELOP_UI - FpgaProgram* _fpgaProgram; -#endif -#ifndef DEVELOP_UI - HardwarePacketEngine packetEngine; -#endif }; #endif //TRXBOARD_H diff --git a/include/model/hardware/core/TrxBoardUtils/PreProcessorDef.h b/include/model/hardware/core/TrxBoardUtils/PreProcessorDef.h index 82dbfff..fd35bb7 100644 --- a/include/model/hardware/core/TrxBoardUtils/PreProcessorDef.h +++ b/include/model/hardware/core/TrxBoardUtils/PreProcessorDef.h @@ -2,9 +2,9 @@ #define PREPROCESSORDEF_H #define MPS_BOARD -//#undef MPS_BOARD +#undef MPS_BOARD #define DEVELOP_UI -#undef DEVELOP_UI +//#undef DEVELOP_UI #endif //PREPROCESSORDEF_H diff --git a/include/model/hardware/core/register/fpgaProgram/FpgaProgram.h b/include/model/hardware/core/register/fpgaProgram/FpgaProgram.h index f9e7f9d..fb71047 100644 --- a/include/model/hardware/core/register/fpgaProgram/FpgaProgram.h +++ b/include/model/hardware/core/register/fpgaProgram/FpgaProgram.h @@ -5,7 +5,6 @@ #include #include #include -#include #include "model/hardware/core/TrxBoardUtils/PreProcessorDef.h" #include "registerDefinition/SlaveFpgaNumber.h" @@ -27,10 +26,8 @@ T byteArray2UintBigEndian(QByteArray& byte) return data; } -class FpgaProgram : public QObject +class FpgaProgram { - Q_OBJECT - private: SerialProgramData* _progData; SlaveFpgaNumber* _fpgaNumber; @@ -49,11 +46,6 @@ private: void setSlaveFpgaNumber(quint8& number) const; -#ifdef DEVELOP_UI -signals: - void programmingProgress(qint32 progressValue, qint32 bitFileSize); -#endif - public: explicit FpgaProgram(SonoDevice* device); ~FpgaProgram(); diff --git a/mainwindow.cpp b/mainwindow.cpp index 2e95ae9..d8df0a7 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -28,6 +28,9 @@ MainWindow::MainWindow(QWidget* parent) _emul = new EmulatorProperties; _prb = new PrbCase; + movie = new QMovie("/home/hasis/Desktop/Develop_HardwareTest/gifs/Glass lines.gif"); + ui->l_programming->hide(); + _colorMap = new QCPColorMap(ui->plot_2->xAxis, ui->plot_2->yAxis); ui->plot_2->setInteractions(QCP::iRangeZoom | QCP::iRangeDrag); @@ -62,7 +65,6 @@ MainWindow::MainWindow(QWidget* parent) ui->tb_prbCtrlRomInfo->setPlaceholderText("info"); ui->tb_prbRomIdRead->setPlaceholderText("id(hex)"); ui->tb_prbRomImpulseRead->setPlaceholderText("impulse"); - ui->prg_programming->setVisible(false); //connect(this, &MainWindow::updateBlockProgressValue, this, //&MainWindow::newBlockProgressValue); @@ -77,6 +79,7 @@ MainWindow::MainWindow(QWidget* parent) //connect(this, &MainWindow::updateAdcLoggerProgressVisibility, this, //&MainWindow::newAdcLoggerProgressVisibility); + connect(ui->action_Exit, &QAction::triggered, this, &MainWindow::exitApp); connect(this, &MainWindow::showMessage, this, &MainWindow::newMessage); connect(this, &MainWindow::connectedPrbChange, this, &MainWindow::getPrbChange); connect(this, &MainWindow::frameLostCall, this, &MainWindow::getFrameLost); @@ -84,9 +87,7 @@ MainWindow::MainWindow(QWidget* parent) connect(this, &MainWindow::scenarioReady, this, &MainWindow::setScenario); connect(this, &MainWindow::labelState, this, &MainWindow::getLabelState); connect(this, &MainWindow::fpgaProgrammer, this, &MainWindow::getFpgaProgrammer); -#ifdef DEVELOP_UI - connect(_trx._fpgaProgram,&FpgaProgram::programmingProgress, this, &MainWindow::getProgrammingProgress); -#endif + connect(this, &MainWindow::programmingGif, this, &MainWindow::getProgrammingGif); //////////////////////// DMA Packet Connections ////////////////////////////// connect(&_trx, &TrxBoard::sendFramePacket, this, &MainWindow::getFramePacket); @@ -170,6 +171,8 @@ MainWindow::~MainWindow() delete _vec; delete _emul; + + delete movie; } ///*************************************************************************************************/ @@ -895,21 +898,12 @@ void MainWindow::on_btn_fpgaBrowse_clicked() } } -/*************************************************************************************************/ -void MainWindow::getProgrammingProgress(qint32 progressValue, qint32 bitFileSize) -{ - ui->prg_programming->setVisible(true); - ui->prg_programming->setRange(0, bitFileSize); - ui->prg_programming->setValue(progressValue); -} - /*************************************************************************************************/ void MainWindow::getFpgaProgrammer(QString path) { try { _trx.slaveFpgaProgram(path); - ui->prg_programming->setVisible(false); } catch(SonoException& e) { @@ -917,6 +911,17 @@ void MainWindow::getFpgaProgrammer(QString path) } } +/*************************************************************************************************/ +void MainWindow::getProgrammingGif() +{ + movie->setSpeed(100); + ui->l_programming->setMovie(movie); + ui->l_programming->show(); + movie->start(); + //ui->l_programming->update(); + //qApp->processEvents(); +} + /*************************************************************************************************/ void MainWindow::getLabelState(QLabel *label, QString str, QColor color) { @@ -931,6 +936,8 @@ void MainWindow::on_btn_fpgaProgram_clicked() { auto path = ui->tb_fpgaBit->text(); + //emit programmingGif(); + QString str = "doing"; QColor color = Qt::red; emit labelState(ui->l_programDone, str, color); @@ -940,6 +947,8 @@ void MainWindow::on_btn_fpgaProgram_clicked() str = "done"; color = Qt::green; emit labelState(ui->l_programDone, str, color); + + //ui->l_programming->hide(); } /*************************************************************************************************/ @@ -1192,10 +1201,12 @@ void MainWindow::on_chk_continuousShowing_clicked() { QtConcurrent::run(this, &MainWindow::on_btn_dmaShow_clicked); _dmaShow = true; + ui->btn_dmaShow->hide(); } else { _dmaShow = false; + ui->btn_dmaShow->show(); } } @@ -1227,6 +1238,8 @@ void MainWindow::on_btn_scenStart_clicked() else { ui->btn_scenStart->setText("Scenario Start"); + ui->chk_continuousShowing->setChecked(false); + on_chk_continuousShowing_clicked(); ui->btn_dmaLogLast->setHidden(true); _dmaLog = false; _dmaRun = false; @@ -3093,3 +3106,7 @@ void MainWindow::setAfeConfig() } /*************************************************************************************************/ +void MainWindow::exitApp() +{ + this->QWidget::close(); +} diff --git a/mainwindow.h b/mainwindow.h index fb7b73a..98d3ad8 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -19,6 +19,7 @@ #include #include #include +#include #include "qcustomplot.h" #include "include/model/hardware/core/TrxBoard.h" @@ -60,7 +61,7 @@ #define TRANSFER_RATE 30.0f #define RAM_BUFFER_OFFSET 0U -#define ULTIMATE_LOG_COUNT 1000 +#define ULTIMATE_LOG_COUNT 100000 QT_BEGIN_NAMESPACE namespace Ui { class MainWindow; } @@ -82,6 +83,8 @@ private: TrxBoard _trx; + QMovie *movie; + QSettings* _settings; UltraSoundDevice* _usd; @@ -161,6 +164,8 @@ private: private slots: + void exitApp(); + void setScenario(const string& h5Path); void getFramePacket (QByteArray packet); @@ -175,12 +180,12 @@ private slots: void getFrameLost(); - void getProgrammingProgress(qint32 progressValue, qint32 bitFileSize); - void getLabelState(QLabel* label, QString str, QColor color); void getFpgaProgrammer (QString path); + void getProgrammingGif(void); + void on_rbtn_reg_toggled(bool checked); void on_rbtn_offset_toggled(bool checked); @@ -370,6 +375,7 @@ signals: void labelState(QLabel* label, QString str, QColor color); void fpgaProgrammer(QString path); void scenarioReady(const string& h5Path); + void programmingGif(); }; #endif // MAINWINDOW_H diff --git a/mainwindow.ui b/mainwindow.ui index 445e83a..4016ac5 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -17,7 +17,7 @@ - 0 + 10 0 811 331 @@ -27,7 +27,7 @@ - 0 + 2 @@ -296,7 +296,7 @@ 0 150 741 - 141 + 111 @@ -365,7 +365,7 @@ 19 - + @@ -395,17 +395,17 @@ Program - + - 10 - 100 - 721 - 23 + 260 + 70 + 221 + 20 - - 24 + + @@ -1395,7 +1395,7 @@ - 0 + 10 330 811 161 @@ -1422,8 +1422,8 @@ 0 30 - 126 - 21 + 117 + 17 @@ -1656,8 +1656,8 @@ 470 30 - 63 - 134 + 58 + 122 @@ -1728,8 +1728,8 @@ 540 90 - 156 - 62 + 145 + 42 @@ -1782,8 +1782,8 @@ 0 60 - 302 - 98 + 285 + 90 @@ -2011,8 +2011,8 @@ 140 30 - 176 - 21 + 163 + 17 @@ -2035,10 +2035,10 @@ - 710 + 720 40 - 101 - 119 + 91 + 109 @@ -2095,10 +2095,10 @@ - 0 + 10 490 821 - 91 + 81 @@ -2215,8 +2215,8 @@ - 0 - 590 + 10 + 570 821 271 @@ -3443,6 +3443,28 @@ + + + + 0 + 0 + 854 + 20 + + + + + &File + + + + + + + + Exit + + @@ -3453,22 +3475,5 @@ - - - chk_continuousShowing - clicked(bool) - btn_dmaShow - setHidden(bool) - - - 727 - 216 - - - 733 - 88 - - - - + diff --git a/src/model/hardware/core/TrxBoard.cpp b/src/model/hardware/core/TrxBoard.cpp index 38897ed..960c194 100644 --- a/src/model/hardware/core/TrxBoard.cpp +++ b/src/model/hardware/core/TrxBoard.cpp @@ -106,10 +106,7 @@ void TrxBoard::afeAdcsSync() const quint32 syncErr(0); this->_bCtrlMngt->timerShot(20); - while(!(this->_bCtrlMngt->checkTimeout())) - { - ; - } + while(!(this->_bCtrlMngt->checkTimeout())); this->_misc->setSyncMode(AdcSyncMode); this->_misc->setManualSync(true); @@ -844,10 +841,7 @@ QList TrxBoard::getAfeReg(eSlaveSelect sel, quint32 afeRegAddr) this->_afeSlave0->setReadRegEnable(true); this->_bCtrlMngt->timerShot(1); - while(!(this->_bCtrlMngt->checkTimeout())) - { - ; - } + while(!(this->_bCtrlMngt->checkTimeout())); for(quint8 i = 0; i < _afeModuleOffset.size(); i++) { @@ -861,10 +855,7 @@ QList TrxBoard::getAfeReg(eSlaveSelect sel, quint32 afeRegAddr) this->_afeSlave1->setReadRegEnable(true); this->_bCtrlMngt->timerShot(1); - while(!(this->_bCtrlMngt->checkTimeout())) - { - ; - } + while(!(this->_bCtrlMngt->checkTimeout())); for(quint8 i = 0; i < _afeModuleOffset.size(); i++) { @@ -878,10 +869,7 @@ QList TrxBoard::getAfeReg(eSlaveSelect sel, quint32 afeRegAddr) this->_afeSlave2->setReadRegEnable(true); this->_bCtrlMngt->timerShot(1); - while(!(this->_bCtrlMngt->checkTimeout())) - { - ; - } + while(!(this->_bCtrlMngt->checkTimeout())); for(quint8 i = 0; i < _afeModuleOffset.size(); i++) { diff --git a/src/model/hardware/core/register/fpgaProgram/FpgaProgram.cpp b/src/model/hardware/core/register/fpgaProgram/FpgaProgram.cpp index d6bb8ef..a706e4a 100644 --- a/src/model/hardware/core/register/fpgaProgram/FpgaProgram.cpp +++ b/src/model/hardware/core/register/fpgaProgram/FpgaProgram.cpp @@ -56,11 +56,6 @@ void FpgaProgram::program(QByteArray& bitFileData, quint8 number) temp.clear(); progByte += sizeof(quint32); - -#ifdef DEVELOP_UI - emit programmingProgress(progByte, bitFileSize); -#endif - } while(!(_status->getProgramFail() || _status->getProgramDone()));