Browse Source

Some features of preprocessors are modified

Some bugs of ui are fixed
master
Arash Aletayeb 4 years ago
parent
commit
c03818a667
  1. 1
      developHw.pro
  2. 2
      developHw.pro.user
  3. 14
      include/model/hardware/core/TrxBoard.h
  4. 4
      include/model/hardware/core/TrxBoardUtils/PreProcessorDef.h
  5. 10
      include/model/hardware/core/register/fpgaProgram/FpgaProgram.h
  6. 43
      mainwindow.cpp
  7. 12
      mainwindow.h
  8. 99
      mainwindow.ui
  9. 20
      src/model/hardware/core/TrxBoard.cpp
  10. 5
      src/model/hardware/core/register/fpgaProgram/FpgaProgram.cpp

1
developHw.pro

@ -25,7 +25,6 @@ SOURCES += \
$$files(hdf5Scenario/*.cpp, true) \ $$files(hdf5Scenario/*.cpp, true) \
HEADERS += \ HEADERS += \
include/model/hardware/core/register/misc/registerDefinition/FrameLostCount.h \
mainwindow.h \ mainwindow.h \
qcustomplot.h \ qcustomplot.h \
api.h \ api.h \

2
developHw.pro.user

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject> <!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.10.0, 2021-06-23T14:23:56. --> <!-- Written by QtCreator 4.10.0, 2021-06-26T16:14:08. -->
<qtcreator> <qtcreator>
<data> <data>
<variable>EnvironmentId</variable> <variable>EnvironmentId</variable>

14
include/model/hardware/core/TrxBoard.h

@ -77,6 +77,7 @@ private:
BeamFormer* _beamFormerSlave1; BeamFormer* _beamFormerSlave1;
BeamFormer* _beamFormerSlave2; BeamFormer* _beamFormerSlave2;
BoardsCtrlMngt* _bCtrlMngt; BoardsCtrlMngt* _bCtrlMngt;
FpgaProgram* _fpgaProgram;
ScenPalyer* _scenPlayer; ScenPalyer* _scenPlayer;
BpiFlash* _bpiFlash; BpiFlash* _bpiFlash;
Afe* _afeSlave0; Afe* _afeSlave0;
@ -86,9 +87,6 @@ private:
Misc* _misc; Misc* _misc;
Sram* _sram; Sram* _sram;
Dsp* _dsp; Dsp* _dsp;
#ifndef DEVELOP_UI
FpgaProgram* _fpgaProgram;
#endif
enum eScenParams : quint8 enum eScenParams : quint8
{ {
@ -158,6 +156,10 @@ signals:
public: public:
#ifndef DEVELOP_UI
HardwarePacketEngine packetEngine;
#endif
TrxBoard(); TrxBoard();
~TrxBoard(); ~TrxBoard();
@ -234,12 +236,6 @@ public:
/////////////////////////////// DMA Data Packet //////////////////////////////////// /////////////////////////////// DMA Data Packet ////////////////////////////////////
void readData(); void readData();
#ifdef DEVELOP_UI
FpgaProgram* _fpgaProgram;
#endif
#ifndef DEVELOP_UI
HardwarePacketEngine packetEngine;
#endif
}; };
#endif //TRXBOARD_H #endif //TRXBOARD_H

4
include/model/hardware/core/TrxBoardUtils/PreProcessorDef.h

@ -2,9 +2,9 @@
#define PREPROCESSORDEF_H #define PREPROCESSORDEF_H
#define MPS_BOARD #define MPS_BOARD
//#undef MPS_BOARD #undef MPS_BOARD
#define DEVELOP_UI #define DEVELOP_UI
#undef DEVELOP_UI //#undef DEVELOP_UI
#endif //PREPROCESSORDEF_H #endif //PREPROCESSORDEF_H

10
include/model/hardware/core/register/fpgaProgram/FpgaProgram.h

@ -5,7 +5,6 @@
#include <QDataStream> #include <QDataStream>
#include <QDebug> #include <QDebug>
#include <QByteArray> #include <QByteArray>
#include <QProgressDialog>
#include "model/hardware/core/TrxBoardUtils/PreProcessorDef.h" #include "model/hardware/core/TrxBoardUtils/PreProcessorDef.h"
#include "registerDefinition/SlaveFpgaNumber.h" #include "registerDefinition/SlaveFpgaNumber.h"
@ -27,10 +26,8 @@ T byteArray2UintBigEndian(QByteArray& byte)
return data; return data;
} }
class FpgaProgram : public QObject class FpgaProgram
{ {
Q_OBJECT
private: private:
SerialProgramData* _progData; SerialProgramData* _progData;
SlaveFpgaNumber* _fpgaNumber; SlaveFpgaNumber* _fpgaNumber;
@ -49,11 +46,6 @@ private:
void setSlaveFpgaNumber(quint8& number) const; void setSlaveFpgaNumber(quint8& number) const;
#ifdef DEVELOP_UI
signals:
void programmingProgress(qint32 progressValue, qint32 bitFileSize);
#endif
public: public:
explicit FpgaProgram(SonoDevice* device); explicit FpgaProgram(SonoDevice* device);
~FpgaProgram(); ~FpgaProgram();

43
mainwindow.cpp

@ -28,6 +28,9 @@ MainWindow::MainWindow(QWidget* parent)
_emul = new EmulatorProperties; _emul = new EmulatorProperties;
_prb = new PrbCase; _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); _colorMap = new QCPColorMap(ui->plot_2->xAxis, ui->plot_2->yAxis);
ui->plot_2->setInteractions(QCP::iRangeZoom | QCP::iRangeDrag); ui->plot_2->setInteractions(QCP::iRangeZoom | QCP::iRangeDrag);
@ -62,7 +65,6 @@ MainWindow::MainWindow(QWidget* parent)
ui->tb_prbCtrlRomInfo->setPlaceholderText("info"); ui->tb_prbCtrlRomInfo->setPlaceholderText("info");
ui->tb_prbRomIdRead->setPlaceholderText("id(hex)"); ui->tb_prbRomIdRead->setPlaceholderText("id(hex)");
ui->tb_prbRomImpulseRead->setPlaceholderText("impulse"); ui->tb_prbRomImpulseRead->setPlaceholderText("impulse");
ui->prg_programming->setVisible(false);
//connect(this, &MainWindow::updateBlockProgressValue, this, //connect(this, &MainWindow::updateBlockProgressValue, this,
//&MainWindow::newBlockProgressValue); //&MainWindow::newBlockProgressValue);
@ -77,6 +79,7 @@ MainWindow::MainWindow(QWidget* parent)
//connect(this, &MainWindow::updateAdcLoggerProgressVisibility, this, //connect(this, &MainWindow::updateAdcLoggerProgressVisibility, this,
//&MainWindow::newAdcLoggerProgressVisibility); //&MainWindow::newAdcLoggerProgressVisibility);
connect(ui->action_Exit, &QAction::triggered, this, &MainWindow::exitApp);
connect(this, &MainWindow::showMessage, this, &MainWindow::newMessage); connect(this, &MainWindow::showMessage, this, &MainWindow::newMessage);
connect(this, &MainWindow::connectedPrbChange, this, &MainWindow::getPrbChange); connect(this, &MainWindow::connectedPrbChange, this, &MainWindow::getPrbChange);
connect(this, &MainWindow::frameLostCall, this, &MainWindow::getFrameLost); 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::scenarioReady, this, &MainWindow::setScenario);
connect(this, &MainWindow::labelState, this, &MainWindow::getLabelState); connect(this, &MainWindow::labelState, this, &MainWindow::getLabelState);
connect(this, &MainWindow::fpgaProgrammer, this, &MainWindow::getFpgaProgrammer); connect(this, &MainWindow::fpgaProgrammer, this, &MainWindow::getFpgaProgrammer);
#ifdef DEVELOP_UI connect(this, &MainWindow::programmingGif, this, &MainWindow::getProgrammingGif);
connect(_trx._fpgaProgram,&FpgaProgram::programmingProgress, this, &MainWindow::getProgrammingProgress);
#endif
//////////////////////// DMA Packet Connections ////////////////////////////// //////////////////////// DMA Packet Connections //////////////////////////////
connect(&_trx, &TrxBoard::sendFramePacket, this, &MainWindow::getFramePacket); connect(&_trx, &TrxBoard::sendFramePacket, this, &MainWindow::getFramePacket);
@ -170,6 +171,8 @@ MainWindow::~MainWindow()
delete _vec; delete _vec;
delete _emul; 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) void MainWindow::getFpgaProgrammer(QString path)
{ {
try try
{ {
_trx.slaveFpgaProgram(path); _trx.slaveFpgaProgram(path);
ui->prg_programming->setVisible(false);
} }
catch(SonoException& e) 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) 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(); auto path = ui->tb_fpgaBit->text();
//emit programmingGif();
QString str = "doing"; QString str = "doing";
QColor color = Qt::red; QColor color = Qt::red;
emit labelState(ui->l_programDone, str, color); emit labelState(ui->l_programDone, str, color);
@ -940,6 +947,8 @@ void MainWindow::on_btn_fpgaProgram_clicked()
str = "done"; str = "done";
color = Qt::green; color = Qt::green;
emit labelState(ui->l_programDone, str, color); 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); QtConcurrent::run(this, &MainWindow::on_btn_dmaShow_clicked);
_dmaShow = true; _dmaShow = true;
ui->btn_dmaShow->hide();
} }
else else
{ {
_dmaShow = false; _dmaShow = false;
ui->btn_dmaShow->show();
} }
} }
@ -1227,6 +1238,8 @@ void MainWindow::on_btn_scenStart_clicked()
else else
{ {
ui->btn_scenStart->setText("Scenario Start"); ui->btn_scenStart->setText("Scenario Start");
ui->chk_continuousShowing->setChecked(false);
on_chk_continuousShowing_clicked();
ui->btn_dmaLogLast->setHidden(true); ui->btn_dmaLogLast->setHidden(true);
_dmaLog = false; _dmaLog = false;
_dmaRun = false; _dmaRun = false;
@ -3093,3 +3106,7 @@ void MainWindow::setAfeConfig()
} }
/*************************************************************************************************/ /*************************************************************************************************/
void MainWindow::exitApp()
{
this->QWidget::close();
}

12
mainwindow.h

@ -19,6 +19,7 @@
#include <string.h> #include <string.h>
#include <QFuture> #include <QFuture>
#include <QFutureWatcher> #include <QFutureWatcher>
#include <QMovie>
#include "qcustomplot.h" #include "qcustomplot.h"
#include "include/model/hardware/core/TrxBoard.h" #include "include/model/hardware/core/TrxBoard.h"
@ -60,7 +61,7 @@
#define TRANSFER_RATE 30.0f #define TRANSFER_RATE 30.0f
#define RAM_BUFFER_OFFSET 0U #define RAM_BUFFER_OFFSET 0U
#define ULTIMATE_LOG_COUNT 1000 #define ULTIMATE_LOG_COUNT 100000
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; } namespace Ui { class MainWindow; }
@ -82,6 +83,8 @@ private:
TrxBoard _trx; TrxBoard _trx;
QMovie *movie;
QSettings* _settings; QSettings* _settings;
UltraSoundDevice* _usd; UltraSoundDevice* _usd;
@ -161,6 +164,8 @@ private:
private slots: private slots:
void exitApp();
void setScenario(const string& h5Path); void setScenario(const string& h5Path);
void getFramePacket (QByteArray packet); void getFramePacket (QByteArray packet);
@ -175,12 +180,12 @@ private slots:
void getFrameLost(); void getFrameLost();
void getProgrammingProgress(qint32 progressValue, qint32 bitFileSize);
void getLabelState(QLabel* label, QString str, QColor color); void getLabelState(QLabel* label, QString str, QColor color);
void getFpgaProgrammer (QString path); void getFpgaProgrammer (QString path);
void getProgrammingGif(void);
void on_rbtn_reg_toggled(bool checked); void on_rbtn_reg_toggled(bool checked);
void on_rbtn_offset_toggled(bool checked); void on_rbtn_offset_toggled(bool checked);
@ -370,6 +375,7 @@ signals:
void labelState(QLabel* label, QString str, QColor color); void labelState(QLabel* label, QString str, QColor color);
void fpgaProgrammer(QString path); void fpgaProgrammer(QString path);
void scenarioReady(const string& h5Path); void scenarioReady(const string& h5Path);
void programmingGif();
}; };
#endif // MAINWINDOW_H #endif // MAINWINDOW_H

99
mainwindow.ui

@ -17,7 +17,7 @@
<widget class="QTabWidget" name="tabWidget"> <widget class="QTabWidget" name="tabWidget">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>10</x>
<y>0</y> <y>0</y>
<width>811</width> <width>811</width>
<height>331</height> <height>331</height>
@ -27,7 +27,7 @@
<string/> <string/>
</property> </property>
<property name="currentIndex"> <property name="currentIndex">
<number>0</number> <number>2</number>
</property> </property>
<widget class="QWidget" name="tab"> <widget class="QWidget" name="tab">
<attribute name="title"> <attribute name="title">
@ -296,7 +296,7 @@
<x>0</x> <x>0</x>
<y>150</y> <y>150</y>
<width>741</width> <width>741</width>
<height>141</height> <height>111</height>
</rect> </rect>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
@ -365,7 +365,7 @@
<height>19</height> <height>19</height>
</rect> </rect>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_28"> <layout class="QHBoxLayout" name="layout_programming">
<item> <item>
<widget class="QLabel" name="label_36"> <widget class="QLabel" name="label_36">
<property name="text"> <property name="text">
@ -395,17 +395,17 @@
<string>Program</string> <string>Program</string>
</property> </property>
</widget> </widget>
<widget class="QProgressBar" name="prg_programming"> <widget class="QLabel" name="l_programming">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>10</x> <x>260</x>
<y>100</y> <y>70</y>
<width>721</width> <width>221</width>
<height>23</height> <height>20</height>
</rect> </rect>
</property> </property>
<property name="value"> <property name="text">
<number>24</number> <string/>
</property> </property>
</widget> </widget>
</widget> </widget>
@ -1395,7 +1395,7 @@
<widget class="QGroupBox" name="groupBox_6"> <widget class="QGroupBox" name="groupBox_6">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>10</x>
<y>330</y> <y>330</y>
<width>811</width> <width>811</width>
<height>161</height> <height>161</height>
@ -1422,8 +1422,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>30</y> <y>30</y>
<width>126</width> <width>117</width>
<height>21</height> <height>17</height>
</rect> </rect>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_11"> <layout class="QHBoxLayout" name="horizontalLayout_11">
@ -1656,8 +1656,8 @@
<rect> <rect>
<x>470</x> <x>470</x>
<y>30</y> <y>30</y>
<width>63</width> <width>58</width>
<height>134</height> <height>122</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_15"> <layout class="QVBoxLayout" name="verticalLayout_15">
@ -1728,8 +1728,8 @@
<rect> <rect>
<x>540</x> <x>540</x>
<y>90</y> <y>90</y>
<width>156</width> <width>145</width>
<height>62</height> <height>42</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_17"> <layout class="QVBoxLayout" name="verticalLayout_17">
@ -1782,8 +1782,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>60</y> <y>60</y>
<width>302</width> <width>285</width>
<height>98</height> <height>90</height>
</rect> </rect>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_8"> <layout class="QHBoxLayout" name="horizontalLayout_8">
@ -2011,8 +2011,8 @@
<rect> <rect>
<x>140</x> <x>140</x>
<y>30</y> <y>30</y>
<width>176</width> <width>163</width>
<height>21</height> <height>17</height>
</rect> </rect>
</property> </property>
<layout class="QHBoxLayout" name="horizontalLayout_10"> <layout class="QHBoxLayout" name="horizontalLayout_10">
@ -2035,10 +2035,10 @@
<widget class="QWidget" name="verticalLayoutWidget"> <widget class="QWidget" name="verticalLayoutWidget">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>710</x> <x>720</x>
<y>40</y> <y>40</y>
<width>101</width> <width>91</width>
<height>119</height> <height>109</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_4"> <layout class="QVBoxLayout" name="verticalLayout_4">
@ -2095,10 +2095,10 @@
<widget class="QGroupBox" name="groupBox_7"> <widget class="QGroupBox" name="groupBox_7">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>10</x>
<y>490</y> <y>490</y>
<width>821</width> <width>821</width>
<height>91</height> <height>81</height>
</rect> </rect>
</property> </property>
<property name="font"> <property name="font">
@ -2215,8 +2215,8 @@
<widget class="QGroupBox" name="groupBox_8"> <widget class="QGroupBox" name="groupBox_8">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>10</x>
<y>590</y> <y>570</y>
<width>821</width> <width>821</width>
<height>271</height> <height>271</height>
</rect> </rect>
@ -3443,6 +3443,28 @@
</widget> </widget>
</widget> </widget>
<widget class="QStatusBar" name="statusbar"/> <widget class="QStatusBar" name="statusbar"/>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>854</width>
<height>20</height>
</rect>
</property>
<widget class="QMenu" name="menu">
<property name="title">
<string>&amp;File</string>
</property>
<addaction name="action_Exit"/>
</widget>
<addaction name="menu"/>
</widget>
<action name="action_Exit">
<property name="text">
<string>Exit</string>
</property>
</action>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget> <customwidget>
@ -3453,22 +3475,5 @@
</customwidget> </customwidget>
</customwidgets> </customwidgets>
<resources/> <resources/>
<connections> <connections/>
<connection>
<sender>chk_continuousShowing</sender>
<signal>clicked(bool)</signal>
<receiver>btn_dmaShow</receiver>
<slot>setHidden(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>727</x>
<y>216</y>
</hint>
<hint type="destinationlabel">
<x>733</x>
<y>88</y>
</hint>
</hints>
</connection>
</connections>
</ui> </ui>

20
src/model/hardware/core/TrxBoard.cpp

@ -106,10 +106,7 @@ void TrxBoard::afeAdcsSync() const
quint32 syncErr(0); quint32 syncErr(0);
this->_bCtrlMngt->timerShot(20); this->_bCtrlMngt->timerShot(20);
while(!(this->_bCtrlMngt->checkTimeout())) while(!(this->_bCtrlMngt->checkTimeout()));
{
;
}
this->_misc->setSyncMode(AdcSyncMode); this->_misc->setSyncMode(AdcSyncMode);
this->_misc->setManualSync(true); this->_misc->setManualSync(true);
@ -844,10 +841,7 @@ QList<quint32> TrxBoard::getAfeReg(eSlaveSelect sel, quint32 afeRegAddr)
this->_afeSlave0->setReadRegEnable(true); this->_afeSlave0->setReadRegEnable(true);
this->_bCtrlMngt->timerShot(1); this->_bCtrlMngt->timerShot(1);
while(!(this->_bCtrlMngt->checkTimeout())) while(!(this->_bCtrlMngt->checkTimeout()));
{
;
}
for(quint8 i = 0; i < _afeModuleOffset.size(); i++) for(quint8 i = 0; i < _afeModuleOffset.size(); i++)
{ {
@ -861,10 +855,7 @@ QList<quint32> TrxBoard::getAfeReg(eSlaveSelect sel, quint32 afeRegAddr)
this->_afeSlave1->setReadRegEnable(true); this->_afeSlave1->setReadRegEnable(true);
this->_bCtrlMngt->timerShot(1); this->_bCtrlMngt->timerShot(1);
while(!(this->_bCtrlMngt->checkTimeout())) while(!(this->_bCtrlMngt->checkTimeout()));
{
;
}
for(quint8 i = 0; i < _afeModuleOffset.size(); i++) for(quint8 i = 0; i < _afeModuleOffset.size(); i++)
{ {
@ -878,10 +869,7 @@ QList<quint32> TrxBoard::getAfeReg(eSlaveSelect sel, quint32 afeRegAddr)
this->_afeSlave2->setReadRegEnable(true); this->_afeSlave2->setReadRegEnable(true);
this->_bCtrlMngt->timerShot(1); this->_bCtrlMngt->timerShot(1);
while(!(this->_bCtrlMngt->checkTimeout())) while(!(this->_bCtrlMngt->checkTimeout()));
{
;
}
for(quint8 i = 0; i < _afeModuleOffset.size(); i++) for(quint8 i = 0; i < _afeModuleOffset.size(); i++)
{ {

5
src/model/hardware/core/register/fpgaProgram/FpgaProgram.cpp

@ -56,11 +56,6 @@ void FpgaProgram::program(QByteArray& bitFileData, quint8 number)
temp.clear(); temp.clear();
progByte += sizeof(quint32); progByte += sizeof(quint32);
#ifdef DEVELOP_UI
emit programmingProgress(progByte, bitFileSize);
#endif
} }
while(!(_status->getProgramFail() || _status->getProgramDone())); while(!(_status->getProgramFail() || _status->getProgramDone()));

Loading…
Cancel
Save