最新更改

This commit is contained in:
2022-08-30 16:14:46 +08:00
parent 8c6be81f94
commit 1cee2339ce
26 changed files with 440 additions and 874 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,3 @@
{ {
"CurrentProjectSetting": "x64-Debug" "CurrentProjectSetting": "Linux-GCC-Debug"
} }

View File

@ -1,12 +1,16 @@
{ {
"ExpandedNodes": [ "ExpandedNodes": [
"", "",
"\\out",
"\\out\\build",
"\\Settings",
"\\Source", "\\Source",
"\\Source\\FS" "\\Source\\Capture",
"\\Source\\Data",
"\\Source\\Logger",
"\\Source\\OSIF",
"\\Source\\OSIF\\DLib",
"\\Source\\OSIF\\include",
"\\Source\\Settings",
"\\Source\\ZZ_SDK"
], ],
"SelectedNode": "\\out\\build", "SelectedNode": "\\main.cpp",
"PreviewInSolutionExplorer": false "PreviewInSolutionExplorer": false
} }

Binary file not shown.

Binary file not shown.

View File

@ -10,7 +10,7 @@
"ctestCommandArgs": "", "ctestCommandArgs": "",
"inheritEnvironments": [ "linux_arm" ], "inheritEnvironments": [ "linux_arm" ],
"intelliSenseMode": "linux-gcc-arm", "intelliSenseMode": "linux-gcc-arm",
"remoteMachineName": "-237651717;172.16.0.236 (username=root, port=22, authentication=Password)", "remoteMachineName": "1290204378;172.16.0.83 (username=root, port=22, authentication=Password)",
"remoteCMakeListsRoot": "/home/pi/FODIS/src/", "remoteCMakeListsRoot": "/home/pi/FODIS/src/",
"remoteBuildRoot": "/home/pi/FODIS/build_d/${name}", "remoteBuildRoot": "/home/pi/FODIS/build_d/${name}",
"remoteInstallRoot": "/home/pi/FODIS/out/install/${name}", "remoteInstallRoot": "/home/pi/FODIS/out/install/${name}",

View File

@ -1,8 +0,0 @@
[FS]
Model=FLAME
Port=-1
UID=
Depth=65535
AEMax=0.85
AEMin=0.60
MinSI=1

View File

@ -0,0 +1,11 @@
[FS]
Model=IS1
Port=/dev/ttyUSB0
UID=21091035
Depth=65535
AEMax=0.85
AEMin=0.60
MinSI=1000
[GPS]
Port=/dev/ttyS1
Baud=9600

View File

@ -137,7 +137,8 @@ int MakeDCT::MakeTable()
bool bRes = qfData.open(QFile::WriteOnly | QFile::Text | QIODevice::Truncate); bool bRes = qfData.open(QFile::WriteOnly | QFile::Text | QIODevice::Truncate);
if (!bRes) if (!bRes)
{ {
qDebug() << "WriteData open Failed."; //qDebug() << "WriteData open Failed.";
printf("WriteData open Failed.");
return 0; return 0;
} }
QString qstrTemp; QString qstrTemp;
@ -185,7 +186,8 @@ int MakeDCT::LoadTable()
bool bRes = qfData.open(QFile::ReadOnly); bool bRes = qfData.open(QFile::ReadOnly);
if (!bRes) if (!bRes)
{ {
qDebug() << "LoadTable open Failed."; //qDebug() << "LoadTable open Failed.";
printf("LoadTable open Failed.");
return 1; return 1;
} }
QString qstrTemp; QString qstrTemp;

View File

@ -4,7 +4,7 @@
class MakeDCT :public QObject class MakeDCT :public QObject
{ {
Q_OBJECT Q_OBJECT;
public: public:
MakeDCT(QObject* parent = nullptr); MakeDCT(QObject* parent = nullptr);
virtual ~MakeDCT(); virtual ~MakeDCT();

View File

@ -31,7 +31,8 @@ int CAbsFSController::Initialize()
m_pFSCtrl = new OceanOptics_lib; m_pFSCtrl = new OceanOptics_lib;
if (m_pFSCtrl->Initialize(false, m_struFSParam.strInterface, m_struFSParam.strSN) != 0) if (m_pFSCtrl->Initialize(false, m_struFSParam.strInterface, m_struFSParam.strSN) != 0)
{ {
qDebug() << "Flame Not Opened"; //qDebug() << "Flame Not Opened";
printf("Flame Not Opened");
return 1; return 1;
} }
break; break;
@ -65,7 +66,8 @@ int CAbsFSController::Initialize()
//m_pFSCtrl->Initialize(false, m_struFSParam.strInterface, NULL); //m_pFSCtrl->Initialize(false, m_struFSParam.strInterface, NULL);
if (m_pFSCtrl->Initialize(false, m_struFSParam.strInterface, m_struFSParam.strSN) != 0) if (m_pFSCtrl->Initialize(false, m_struFSParam.strInterface, m_struFSParam.strSN) != 0)
{ {
qDebug() << "IS1 Not Opened"; //qDebug() << "IS1 Not Opened";
printf("IS1 Not Opened");
return 3; return 3;
} }
break; break;
@ -86,8 +88,16 @@ int CAbsFSController::Initialize()
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "GetDeviceAttribute Failed" << iRes; qDebug() << "GetDeviceAttribute Failed" << iRes;
printf("GetDeviceAttribute Failed");
return 4; return 4;
} }
else//mark by zz
{
if (m_struFSParam.ucDeviceModel== DeviceModel::IS2)
{
m_struDeviceAttr.iMinIntegrationTimeInMS = 10;
}
}
iRes = m_pFSCtrl->SetDeviceTemperature(0); iRes = m_pFSCtrl->SetDeviceTemperature(0);
if (iRes != 0) if (iRes != 0)
@ -124,7 +134,8 @@ int CAbsFSController::SingleShot(DataFrame& struSingleFrame)
int iRes = m_pFSCtrl->SingleShot(m_struSingleFrame); int iRes = m_pFSCtrl->SingleShot(m_struSingleFrame);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err. SingleShot"; //qDebug() << "Err. SingleShot";
printf("Err. SingleShot");
return 1; return 1;
} }
@ -133,7 +144,8 @@ int CAbsFSController::SingleShot(DataFrame& struSingleFrame)
int iRes = m_pFSCtrl->SingleShot(m_struSingleFrame); int iRes = m_pFSCtrl->SingleShot(m_struSingleFrame);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err. SingleShot"; //qDebug() << "Err. SingleShot";
printf("Err. SingleShot");
return 1; return 1;
} }
} }
@ -209,7 +221,8 @@ int CAbsFSController::PerformAutoExposure()
int iRes = m_pFSCtrl->SingleShot(dfTemp); int iRes = m_pFSCtrl->SingleShot(dfTemp);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:PerformAutoExposure Failed.Exit Code:2"; //qDebug() << "Err:PerformAutoExposure Failed.Exit Code:2";
printf("Err:PerformAutoExposure Failed,SingleShot Failed.Exit Code:2");
return 2; return 2;
} }
@ -284,7 +297,8 @@ int CAbsFSController::PerformAutoExposure()
iRes = m_pFSCtrl->SetExposureTime(m_struDeviceAttr.iMinIntegrationTimeInMS); iRes = m_pFSCtrl->SetExposureTime(m_struDeviceAttr.iMinIntegrationTimeInMS);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:PerformAutoExposure Failed.Exit Code:3" ; //qDebug() << "Err:PerformAutoExposure Failed.Exit Code:3" ;
printf("Err:PerformAutoExposure Failed,SetExposureTime Failed.Exit Code:2");
return 3; return 3;
} }
else else
@ -304,7 +318,8 @@ int CAbsFSController::PerformAutoExposure()
iRes = m_pFSCtrl->SetExposureTime(m_struDeviceAttr.iMaxIntegrationTimeInMS - 1); iRes = m_pFSCtrl->SetExposureTime(m_struDeviceAttr.iMaxIntegrationTimeInMS - 1);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:PerformAutoExposure Failed.Exit Code:3"; //qDebug() << "Err:PerformAutoExposure Failed.Exit Code:3";
printf("Err:PerformAutoExposure Failed,SetExposureTime Failed.Exit Code:3");
return 3; return 3;
} }
else else
@ -318,7 +333,8 @@ int CAbsFSController::PerformAutoExposure()
iRes = m_pFSCtrl->SetExposureTime((int)iExposureTime); iRes = m_pFSCtrl->SetExposureTime((int)iExposureTime);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:PerformAutoExposure Failed.Exit Code:4" ; //qDebug() << "Err:PerformAutoExposure Failed.Exit Code:4" ;
printf("Err:PerformAutoExposure Failed,SetExposureTime Failed.Exit Code:4");
return 3; return 3;
} }
else else
@ -342,7 +358,8 @@ int CAbsFSController::CheckAndAdjust_Fast()
int iRes = m_pFSCtrl->GetExposureTime(iExposureTime); int iRes = m_pFSCtrl->GetExposureTime(iExposureTime);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err. SingleShot"; //qDebug() << "Err. SingleShot";
printf("CheckAndAdjust_Fast,Err. SingleShot");
return 1; return 1;
} }

View File

@ -24,12 +24,15 @@ int CMainGrabber::SetContext(BD357Controller &pctrlGPS, DataFileProcessor &dfpDa
{ {
if (&pctrlGPS == NULL) if (&pctrlGPS == NULL)
{ {
qDebug() << "GPS Not Initialized"; //qDebug() << "GPS Not Initialized";
printf("GPS Not Initialized");
return 1; return 1;
} }
m_pctrlGPS = &pctrlGPS; m_pctrlGPS = &pctrlGPS;
m_dfpDataSaver = &dfpDataSaver; m_dfpDataSaver = &dfpDataSaver;
return 0;
} }
int CMainGrabber::Initialize() int CMainGrabber::Initialize()
@ -40,6 +43,8 @@ int CMainGrabber::Initialize()
int CMainGrabber::StartGrab() int CMainGrabber::StartGrab()
{ {
system("gpio write 5 1");
m_dfpDataSaver->GenerateFilePath();
m_pctrlFS->PerformAutoExposure(); m_pctrlFS->PerformAutoExposure();
DataFrame dfTemp; DataFrame dfTemp;
m_iFlagIsCapture = 1; m_iFlagIsCapture = 1;
@ -50,20 +55,26 @@ int CMainGrabber::StartGrab()
qtTime.start(); qtTime.start();
//////////// ////////////
system("gpio write 5 0");
qDebug() << "system IO";
m_pctrlFS->SingleShot(dfTemp); m_pctrlFS->SingleShot(dfTemp);
qDebug() << "SingleShot";
RemoveBackground(dfTemp); RemoveBackground(dfTemp);
CheckExposureTime(dfTemp); CheckExposureTime(dfTemp);
m_dfpDataSaver->WriteData(dfTemp); m_dfpDataSaver->WriteData(dfTemp);
system("gpio write 5 1");
//////////// ////////////
//int iMillisec = qtTime.elapsed(); //int iMillisec = qtTime.elapsed();
int iSleep =m_struFSRunParams.dMinSamplingInterval - qtTime.elapsed(); int iSleep =m_struFSRunParams.dMinSamplingInterval - qtTime.elapsed();
if (iSleep>0) if (iSleep>0)
{ {
Delay_MSec(iSleep); Delay_MSec(iSleep);
} }
qDebug() << "Delay_MSec"<<iSleep; qDebug() << "Delay_MSec"<< iSleep;
} }
return 0;
} }
int CMainGrabber::Initialize_Self() int CMainGrabber::Initialize_Self()
@ -73,6 +84,8 @@ int CMainGrabber::Initialize_Self()
LoadDCT(); LoadDCT();
emit Signal_InitFinished(); emit Signal_InitFinished();
return 0;
} }
void CMainGrabber::Delay_MSec(ZZ_U16 usMS) void CMainGrabber::Delay_MSec(ZZ_U16 usMS)
@ -100,7 +113,6 @@ int CMainGrabber::InitializeWorkers()
Delay_MSec(1000); Delay_MSec(1000);
} }
m_pctrlFS->GetDeviceAttr(m_struDeviceAttr); m_pctrlFS->GetDeviceAttr(m_struDeviceAttr);
m_dfpDataSaver->GenerateFilePath();
m_dfpDataSaver->WriteWavelengthInfo(m_struDeviceAttr.fWaveLengthInNM, m_struDeviceAttr.iPixels); m_dfpDataSaver->WriteWavelengthInfo(m_struDeviceAttr.fWaveLengthInNM, m_struDeviceAttr.iPixels);
return 0; return 0;
} }
@ -120,6 +132,8 @@ int CMainGrabber::LoadDCT()
m_DCTable.Initialize_Part(); m_DCTable.Initialize_Part();
m_DCTable.LoadTable(); m_DCTable.LoadTable();
m_DCTable.GetDCTable(m_vecDataFrame); m_DCTable.GetDCTable(m_vecDataFrame);
return 0;
} }
int CMainGrabber::CheckExposureTime(DataFrame dfTemp) int CMainGrabber::CheckExposureTime(DataFrame dfTemp)
@ -164,9 +178,20 @@ int CMainGrabber::CheckExposureTime(DataFrame dfTemp)
if ((dExpTimeMS <= m_struDeviceAttr.iMinIntegrationTimeInMS)|| (dExpTimeMS > m_struDeviceAttr.iMaxIntegrationTimeInMS - 1)) if ((dExpTimeMS <= m_struDeviceAttr.iMinIntegrationTimeInMS)|| (dExpTimeMS > m_struDeviceAttr.iMaxIntegrationTimeInMS - 1))
{ {
qDebug() << "SetExposureTime out of range"; if ((dExpTimeMS <= m_struDeviceAttr.iMinIntegrationTimeInMS))
return 1; {
dExpTimeMS = m_struDeviceAttr.iMinIntegrationTimeInMS;
qDebug() << "SetExposureTime out of range-Min";
return 1;
}
if ((dExpTimeMS > m_struDeviceAttr.iMaxIntegrationTimeInMS - 1))
{
dExpTimeMS = m_struDeviceAttr.iMaxIntegrationTimeInMS - 1;
qDebug() << "SetExposureTime out of range-Max";
return 2;
}
} }
m_pctrlFS->SetExposureTime((int)dExpTimeMS); m_pctrlFS->SetExposureTime((int)dExpTimeMS);

View File

@ -49,16 +49,18 @@ int ZZ_ATPControl_Serial_Qt::Initialize(bool bIsUSBMode, std::string ucPortNumbe
bool bRes = m_pSerialPort->setBaudRate(m_iBaudRate); bool bRes = m_pSerialPort->setBaudRate(m_iBaudRate);
if (!bRes) if (!bRes)
{ {
qDebug() << "Err:setBaudRate Failed.Exit Code:1"; //qDebug() << "Err:setBaudRate Failed.Exit Code:1";
//std::cout << "Err.setBaudRate Failed" << std::endl; //std::cout << "Err.setBaudRate Failed" << std::endl;
printf("Err:setBaudRate Failed.Exit Code:1");
return 1; return 1;
} }
bRes = m_pSerialPort->open(QIODevice::ReadWrite); bRes = m_pSerialPort->open(QIODevice::ReadWrite);
if (!bRes) if (!bRes)
{ {
qDebug() << "Err:open Failed.Exit Code:2"; //qDebug() << "Err:open Failed.Exit Code:2";
//std::cout << "Err.open Failed" << std::endl; //std::cout << "Err.open Failed" << std::endl;
printf("Err:open Failed.Exit Code:2");
return 2; return 2;
} }
@ -75,7 +77,8 @@ int ZZ_ATPControl_Serial_Qt::Initialize(bool bIsUSBMode, std::string ucPortNumbe
std::string::size_type szPostion = m_diDeviceInfo.strSN.find(strDeviceName); std::string::size_type szPostion = m_diDeviceInfo.strSN.find(strDeviceName);
if (szPostion == std::string::npos) if (szPostion == std::string::npos)
{ {
qDebug() << "Err:FS serial number not match.Exit Code:3"; printf("Err:FS serial number not match.Exit Code:3");
//qDebug() << "Err:FS serial number not match.Exit Code:3";
//return 3; //return 3;
} }
else else
@ -99,19 +102,22 @@ int ZZ_ATPControl_Serial_Qt::GetDeviceInfo(DeviceInfo& Info)
int iRes = SendCommand(qbSend); int iRes = SendCommand(qbSend);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceInfo Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = RecvData(qbRecv); iRes = RecvData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceInfo Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = ParseData(qbRecv); iRes = ParseData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceInfo Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
m_diDeviceInfo.strPN = qbRecv.data(); m_diDeviceInfo.strPN = qbRecv.data();
@ -122,19 +128,22 @@ int ZZ_ATPControl_Serial_Qt::GetDeviceInfo(DeviceInfo& Info)
iRes = SendCommand(qbSend); iRes = SendCommand(qbSend);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceInfo Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = RecvData(qbRecv); iRes = RecvData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceInfo Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = ParseData(qbRecv); iRes = ParseData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceInfo Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceInfo Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
m_diDeviceInfo.strSN = qbRecv.data(); m_diDeviceInfo.strSN = qbRecv.data();
@ -154,19 +163,22 @@ int ZZ_ATPControl_Serial_Qt::GetDeviceAttribute(DeviceAttribute& Attr)
int iRes = SendCommand(qbSend); int iRes = SendCommand(qbSend);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = RecvData(qbRecv); iRes = RecvData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = ParseData(qbRecv); iRes = ParseData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
m_daDeviceAttr.iMinIntegrationTimeInMS = (ZZ_U8)qbRecv[1] + (ZZ_U8)qbRecv[0] * 256; m_daDeviceAttr.iMinIntegrationTimeInMS = (ZZ_U8)qbRecv[1] + (ZZ_U8)qbRecv[0] * 256;
@ -177,19 +189,22 @@ int ZZ_ATPControl_Serial_Qt::GetDeviceAttribute(DeviceAttribute& Attr)
iRes = SendCommand(qbSend); iRes = SendCommand(qbSend);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = RecvData(qbRecv); iRes = RecvData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = ParseData(qbRecv); iRes = ParseData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
m_daDeviceAttr.iMaxIntegrationTimeInMS = (ZZ_U8)qbRecv[1] + (ZZ_U8)qbRecv[0] * 256; m_daDeviceAttr.iMaxIntegrationTimeInMS = (ZZ_U8)qbRecv[1] + (ZZ_U8)qbRecv[0] * 256;
@ -201,13 +216,15 @@ int ZZ_ATPControl_Serial_Qt::GetDeviceAttribute(DeviceAttribute& Attr)
iRes = SetExposureTime(m_daDeviceAttr.iMinIntegrationTimeInMS); iRes = SetExposureTime(m_daDeviceAttr.iMinIntegrationTimeInMS);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Call SetExposureTime error.Exit Code:2"; //qDebug() << "Err:GetDeviceAttribute Failed,Call SetExposureTime error.Exit Code:2";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:2");
//return 2; //return 2;
} }
iRes = SingleShot(m_daDeviceAttr.iPixels); iRes = SingleShot(m_daDeviceAttr.iPixels);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Call SingleShot error.Exit Code:3"; //qDebug() << "Err:GetDeviceAttribute Failed,Call SingleShot error.Exit Code:3";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:3");
return 3; return 3;
} }
@ -222,19 +239,22 @@ int ZZ_ATPControl_Serial_Qt::GetDeviceAttribute(DeviceAttribute& Attr)
iRes = SendCommand(qbSend); iRes = SendCommand(qbSend);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = RecvData(qbRecv); iRes = RecvData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
iRes = ParseData(qbRecv); iRes = ParseData(qbRecv);
if (iRes != 0) if (iRes != 0)
{ {
qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1"; //qDebug() << "Err:GetDeviceAttribute Failed,Communication error.Exit Code:1";
printf("Err:GetDeviceAttribute Failed,Communication error.Exit Code:1");
return 1; return 1;
} }
float fWaveLengthCoef[4]; float fWaveLengthCoef[4];

View File

@ -30,7 +30,8 @@ int DataFileProcessor::WriteWavelengthInfo(float *pfWaveLength, int iLength)
bRes = qfData.open(QFile::WriteOnly | QFile::Text | QFile::Truncate); bRes = qfData.open(QFile::WriteOnly | QFile::Text | QFile::Truncate);
if (!bRes) if (!bRes)
{ {
qDebug() << "WriteEnvironmentInfo open Failed."; //qDebug() << "WriteEnvironmentInfo open Failed.";
printf("WriteWavelengthInfo QFile open Failed");
return 1; return 1;
} }
@ -60,26 +61,72 @@ int DataFileProcessor::WriteWavelengthInfo(float *pfWaveLength, int iLength)
int DataFileProcessor::WriteData(DataFrame dfDataFrame) int DataFileProcessor::WriteData(DataFrame dfDataFrame)
{ {
QFile qfData(m_qstrFullFileName); QFile qfData(m_qstrFullFileName);
qDebug() << m_qstrFullFileName;
bool bRes = qfData.open(QFile::WriteOnly| QIODevice::Append); bool bRes = qfData.open(QFile::WriteOnly| QIODevice::Append);
if (!bRes) if (!bRes)
{ {
qDebug() << "WriteData open Failed."; printf("WriteData QFile open Failed");
return 0; return 0;
} }
qfData.write((char*)&dfDataFrame, sizeof(DataFrame)); qfData.write((char*)&dfDataFrame, sizeof(DataFrame));
qfData.flush();
return 0; return 0;
} }
void DataFileProcessor::LoadWaveLengthFile(QString qstrFileName)
{
//E:\WavelengthInfo.txt
QFile qfWavelength(qstrFileName);
//QFile qfWavelength();
bool bRes = qfWavelength.open(QFile::ReadOnly);
if (!bRes)
{
printf("LoadWaveLengthFile open Failed.");
return;
}
QString qsData = qfWavelength.readAll();
int iTemp = qsData.size();
qsData.remove(iTemp - 1, 1);
qsData.remove(0, 14);
QStringList qsList = qsData.split(',');
for (int i=0;i<qsList.size();i++)
{
qDebug() << qsList[i];
}
//iTemp = qsData.size();
return;
}
void DataFileProcessor::LoadSingleDataFile(QString qstrFileName) void DataFileProcessor::LoadSingleDataFile(QString qstrFileName)
{ {
qstrFileName; QFile qfDataFile(qstrFileName);
DataFrame dfTemp;
bool bRes = qfDataFile.open(QFile::ReadOnly);
if (!bRes)
{
printf("LoadWaveLengthFile open Failed.");
return;
}
long long int llCount = (qfDataFile.size()) / (sizeof(DataFrame));
for (int i=0;i<llCount;i++)
{
QByteArray qbDataFrame = qfDataFile.read(sizeof(DataFrame));
memcpy(&dfTemp, qbDataFrame, sizeof(DataFrame));
}
return; return;
} }
void DataFileProcessor::GenerateFilePath() void DataFileProcessor::GenerateFilePath()
{ {
m_qdtTime = QDateTime::currentDateTime(); m_qdtTime = QDateTime::currentDateTime();
// QTimeZone curZone;
// m_qdtTime.toTimeZone();
QString qstrAddYMD = m_qdtTime.toString("/yyyy_MM_dd"); QString qstrAddYMD = m_qdtTime.toString("/yyyy_MM_dd");
m_qdtTime = m_qdtTime.addSecs(3600 * 8);
QString qstrAddHMS = m_qdtTime.toString("hh_mm_ss"); QString qstrAddHMS = m_qdtTime.toString("hh_mm_ss");
@ -94,7 +141,8 @@ void DataFileProcessor::GenerateFilePath()
bool bRes = qdirPathTemp.mkdir(m_qstrFilePath); bool bRes = qdirPathTemp.mkdir(m_qstrFilePath);
if (!bRes) if (!bRes)
{ {
qDebug() << "DataFileProcessor mkdir Failed."; //qDebug() << "DataFileProcessor mkdir Failed.";
printf("DataFileProcessor mkdir Failed");
} }
} }
@ -104,7 +152,8 @@ void DataFileProcessor::GenerateFilePath()
bool bRes = qdirPathTempA.mkdir(qstrTemp); bool bRes = qdirPathTempA.mkdir(qstrTemp);
if (!bRes) if (!bRes)
{ {
qDebug() << "DataFileProcessor mkdir Failed."; //qDebug() << "DataFileProcessor mkdir Failed.";
printf("DataFileProcessor mkdir Failed");
} }
} }
} }

View File

@ -16,6 +16,7 @@ public:
int WriteWavelengthInfo(float *pfWaveLength, int iLength); int WriteWavelengthInfo(float *pfWaveLength, int iLength);
int WriteData(DataFrame dfDataFrame); int WriteData(DataFrame dfDataFrame);
void LoadWaveLengthFile(QString qstrFileName);
void LoadSingleDataFile(QString qstrFileName); void LoadSingleDataFile(QString qstrFileName);
//void SetEnvironmentContex(EContext struEC); //void SetEnvironmentContex(EContext struEC);
//void SetManmadeEnviromentalContext(MEContext struMEC); //void SetManmadeEnviromentalContext(MEContext struMEC);

View File

@ -28,6 +28,7 @@ BD357Controller::~BD357Controller()
int BD357Controller::SetContext(CMainGrabber& pMainGrabber) int BD357Controller::SetContext(CMainGrabber& pMainGrabber)
{ {
m_pMainGrabber = &pMainGrabber; m_pMainGrabber = &pMainGrabber;
return 0;
} }
int BD357Controller::SetupMessagePipeline() int BD357Controller::SetupMessagePipeline()
@ -42,7 +43,7 @@ int BD357Controller::SyncDateOnce()
bool bFlagFinish = false; bool bFlagFinish = false;
size_t uiCount = 0; size_t uiCount = 0;
ZZ_U8 u8Rx,u8Tx; //ZZ_U8 u8Rx,u8Tx;
while (!bFlagFinish) while (!bFlagFinish)
@ -87,7 +88,12 @@ int BD357Controller::SyncDateOnce()
time_t stdtime = m_qdtDateTime.toTime_t(); time_t stdtime = m_qdtDateTime.toTime_t();
time_t stdtimeUTC = m_qdtDateTimeUTC.toTime_t(); time_t stdtimeUTC = m_qdtDateTimeUTC.toTime_t();
#ifdef WIN32
#else
stime(&stdtimeUTC); stime(&stdtimeUTC);
#endif
system("gpio write 4 1"); system("gpio write 4 1");
qDebug() << "system(gpio write 4 1)"; qDebug() << "system(gpio write 4 1)";
@ -137,6 +143,8 @@ int BD357Controller::Initialize(GPSInfo &struGPSI)
{ {
m_struGPSInfo = struGPSI; m_struGPSInfo = struGPSI;
emit Signal_InitSelf(); emit Signal_InitSelf();
return 0;
} }
@ -207,7 +215,8 @@ int BD357Controller::Slot_InitSelf()
bool bRes = m_pSerialPort->setBaudRate(m_struGPSInfo.iBaud); bool bRes = m_pSerialPort->setBaudRate(m_struGPSInfo.iBaud);
if (!bRes) if (!bRes)
{ {
qDebug() << "Err:setBaudRate Failed.Exit Code:1"; //qDebug() << "Err:setBaudRate Failed.Exit Code:1";
printf("Err:setBaudRate Failed.Exit Code:1");
//std::cout << "Err.setBaudRate Failed" << std::endl; //std::cout << "Err.setBaudRate Failed" << std::endl;
return 1; return 1;
} }
@ -215,7 +224,8 @@ int BD357Controller::Slot_InitSelf()
bRes = m_pSerialPort->open(QIODevice::ReadWrite); bRes = m_pSerialPort->open(QIODevice::ReadWrite);
if (!bRes) if (!bRes)
{ {
qDebug() << "Err:open Failed.Exit Code:2"; //qDebug() << "Err:open Failed.Exit Code:2";
printf("Err:open Failed.Exit Code:2");
//std::cout << "Err.open Failed" << std::endl; //std::cout << "Err.open Failed" << std::endl;
return 2; return 2;
} }
@ -224,6 +234,8 @@ int BD357Controller::Slot_InitSelf()
lwgps_init(&m_hLWGPS); lwgps_init(&m_hLWGPS);
lwrb_init(&m_hlwrbBuffer, m_u8GPSDataBuffer, sizeof(m_u8GPSDataBuffer)); lwrb_init(&m_hlwrbBuffer, m_u8GPSDataBuffer, sizeof(m_u8GPSDataBuffer));
return 0;
} }
int BD357Controller::Slot_SyncDateOnce() int BD357Controller::Slot_SyncDateOnce()

View File

@ -4,7 +4,7 @@
ZZ_SysConfigger::ZZ_SysConfigger(QObject* parent /*= nullptr*/) ZZ_SysConfigger::ZZ_SysConfigger(QObject* parent /*= nullptr*/)
{ {
#ifdef _DEBUG #ifdef _DEBUG
m_qstrDeviceConfigFilePath = "E:/WorkSpace/git/IRIS_FODIS/IRIS_FODIS/Settings/DeviceSettings.ini"; m_qstrDeviceSettingsFilePath = "E:/WorkSpace/git/IRIS_FODIS/IRIS_FODIS/Settings/DeviceSettings.ini";
#else #else
m_qstrDeviceSettingsFilePath = "/home/data/Setting/DeviceSettings.ini"; m_qstrDeviceSettingsFilePath = "/home/data/Setting/DeviceSettings.ini";
#endif // DEBUG #endif // DEBUG
@ -40,7 +40,8 @@ bool ZZ_SysConfigger::LoadSettings_FS(OneFSContext &struOFSC)
QString qstrTemp = m_qsDeviceSettings->value(QString("FS/Model"), "Null").toString(); QString qstrTemp = m_qsDeviceSettings->value(QString("FS/Model"), "Null").toString();
if(qstrTemp == "Null") if(qstrTemp == "Null")
{ {
qDebug() << "FS Model Value Err."; //qDebug() << "FS Model Value Err.";
printf("FS Model Value Err.");
return false; return false;
} }
m_struOneFSContext.ucDeviceModel = ZZ_MISCDEF::IRIS::GetIndex(qstrTemp.toStdString()); m_struOneFSContext.ucDeviceModel = ZZ_MISCDEF::IRIS::GetIndex(qstrTemp.toStdString());
@ -49,6 +50,7 @@ bool ZZ_SysConfigger::LoadSettings_FS(OneFSContext &struOFSC)
if (qstrTemp == "Null") if (qstrTemp == "Null")
{ {
qDebug() << "FS Port Value Err."; qDebug() << "FS Port Value Err.";
printf("FS Model Value Err.");
return false; return false;
} }
m_struOneFSContext.strInterface = qstrTemp.toStdString(); m_struOneFSContext.strInterface = qstrTemp.toStdString();
@ -57,6 +59,7 @@ bool ZZ_SysConfigger::LoadSettings_FS(OneFSContext &struOFSC)
if (qstrTemp == "Null") if (qstrTemp == "Null")
{ {
qDebug() << "FS UID Value Err."; qDebug() << "FS UID Value Err.";
printf("FS Model Value Err.");
return false; return false;
} }
m_struOneFSContext.strSN = qstrTemp.toStdString(); m_struOneFSContext.strSN = qstrTemp.toStdString();
@ -65,6 +68,7 @@ bool ZZ_SysConfigger::LoadSettings_FS(OneFSContext &struOFSC)
if (fAEMax == -1) if (fAEMax == -1)
{ {
qDebug() << "FS AEMax Value Err."; qDebug() << "FS AEMax Value Err.";
printf("FS Model Value Err.");
return false; return false;
} }
m_struOneFSContext.fMaxFactor = fAEMax; m_struOneFSContext.fMaxFactor = fAEMax;
@ -73,6 +77,7 @@ bool ZZ_SysConfigger::LoadSettings_FS(OneFSContext &struOFSC)
if (fAEMin == -1) if (fAEMin == -1)
{ {
qDebug() << "FS AEMin Value Err."; qDebug() << "FS AEMin Value Err.";
printf("FS Model Value Err.");
return false; return false;
} }
m_struOneFSContext.fMinFactor = fAEMin; m_struOneFSContext.fMinFactor = fAEMin;
@ -81,6 +86,7 @@ bool ZZ_SysConfigger::LoadSettings_FS(OneFSContext &struOFSC)
if (lDepth == -1) if (lDepth == -1)
{ {
qDebug() << "FS Depth Value Err."; qDebug() << "FS Depth Value Err.";
printf("FS Model Value Err.");
return false; return false;
} }
m_struOneFSContext.lDepth = lDepth; m_struOneFSContext.lDepth = lDepth;
@ -89,6 +95,7 @@ bool ZZ_SysConfigger::LoadSettings_FS(OneFSContext &struOFSC)
if (dMSI == -1) if (dMSI == -1)
{ {
qDebug() << "FS MinSI Value Err."; qDebug() << "FS MinSI Value Err.";
printf("FS Model Value Err.");
return false; return false;
} }
m_struOneFSContext.dMinSamplingInterval = dMSI; m_struOneFSContext.dMinSamplingInterval = dMSI;
@ -106,6 +113,7 @@ bool ZZ_SysConfigger::LoadSettings_GPS(GPSInfo &struGPSC)
if (qstrTemp == "Null") if (qstrTemp == "Null")
{ {
qDebug() << "GPS Port Value Err."; qDebug() << "GPS Port Value Err.";
printf("FS Model Value Err.");
return false; return false;
} }
m_struGPSContext.qstrInterfaceName = qstrTemp; m_struGPSContext.qstrInterfaceName = qstrTemp;
@ -113,7 +121,8 @@ bool ZZ_SysConfigger::LoadSettings_GPS(GPSInfo &struGPSC)
qstrTemp = m_qsDeviceSettings->value(QString("GPS/Baud"), "Null").toString(); qstrTemp = m_qsDeviceSettings->value(QString("GPS/Baud"), "Null").toString();
if (qstrTemp == "Null") if (qstrTemp == "Null")
{ {
qDebug() << "GPS Port Value Err."; //qDebug() << "GPS Port Value Err.";
printf("GPS Port Value Err.");
return false; return false;
} }
m_struGPSContext.iBaud = qstrTemp.toInt(); m_struGPSContext.iBaud = qstrTemp.toInt();

View File

@ -13,18 +13,18 @@ int main(int argc, char* argv[])
using namespace ZZ_MISCDEF::ZZ_RUNPARAMS; using namespace ZZ_MISCDEF::ZZ_RUNPARAMS;
using namespace ZZ_MISCDEF::MISC_DETECTOR; using namespace ZZ_MISCDEF::MISC_DETECTOR;
system("gpio mode 4 out"); //DataFrame aaaa;
system("gpio mode 5 out"); //int xxxx = sizeof(aaaa);
qDebug() << "system(gpio mode 4 out)";
qDebug() << "system(gpio mode 5 out)";
QCoreApplication a(argc, argv); QCoreApplication a(argc, argv);
//long long int a1;// 8 system("gpio mode 4 out");
//long long b; // 8 system("gpio mode 5 out");
//double c; // 8
//qDebug()<<sizeof(a1)<< sizeof(b)<<sizeof(c); qDebug() << "system(gpio mode 4 out)";
///// qDebug() << "system(gpio mode 5 out)";
bool bRes = false; bool bRes = false;
OneFSContext m_struFSParam; OneFSContext m_struFSParam;
@ -36,22 +36,34 @@ int main(int argc, char* argv[])
CMainGrabber m_mgMainGrabber; CMainGrabber m_mgMainGrabber;
DataFileProcessor m_dfpDataSaver; DataFileProcessor m_dfpDataSaver;
///test
//m_dfpDataSaver.LoadWaveLengthFile("E:/WavelengthInfo.txt");
//m_dfpDataSaver.LoadSingleDataFile("E:/13_20_22.dat");
///configger ///configger
m_syscfSettings.Initialize(); m_syscfSettings.Initialize();
bRes = m_syscfSettings.LoadSettings_FS(m_struFSParam); bRes = m_syscfSettings.LoadSettings_FS(m_struFSParam);
if (!bRes) if (!bRes)
{ {
qDebug() << "LoadSettings_FS Err." << endl; //qDebug() << "LoadSettings_FS Err." << endl;
printf("LoadSettings_FS Err.");
return 1; return 1;
} }
bRes = m_syscfSettings.LoadSettings_GPS(m_struGPSInfo); bRes = m_syscfSettings.LoadSettings_GPS(m_struGPSInfo);
if (!bRes) if (!bRes)
{ {
qDebug() << "LoadSettings_GPS Err." << endl; //qDebug() << "LoadSettings_GPS Err." << endl;
printf("LoadSettings_GPS Err.");
return 1; return 1;
} }
///// /////
//test only
//MakeDCT m_test;
// m_test.SetRunParams(m_struFSParam);
// m_test.Initialize();
// m_test.MakeTable();
//m_test.Initialize_Part();
//m_test.LoadTable();
m_ctrlGPS.SetContext(m_mgMainGrabber); m_ctrlGPS.SetContext(m_mgMainGrabber);
m_ctrlGPS.SetupMessagePipeline(); m_ctrlGPS.SetupMessagePipeline();
@ -70,15 +82,15 @@ int main(int argc, char* argv[])
//m_ctrlGPS.SyncDateOnce(); //m_ctrlGPS.SyncDateOnce();
cout << "Hello CMake." << endl; cout << "Hello CMake." << endl;
/////// ///////
// MakeDCT m_test;
// m_test.SetRunParams(m_struFSParam);
// m_test.Initialize();
// m_test.MakeTable();
//test only
//m_test.Initialize_Part();
//m_test.LoadTable();
//long long int a1;// 8
//long long b; // 8
//double c; // 8
//qDebug()<<sizeof(a1)<< sizeof(b)<<sizeof(c);
/////
return a.exec(); return a.exec();
} }

View File

@ -595,7 +595,7 @@
} }
], ],
"type" : "INTERNAL", "type" : "INTERNAL",
"value" : "/home/pi/FODIS/src/IRIS_FODIS" "value" : "/home/pi/FODIS/src"
}, },
{ {
"name" : "CMAKE_INSTALL_PREFIX", "name" : "CMAKE_INSTALL_PREFIX",
@ -1143,7 +1143,7 @@
} }
], ],
"type" : "STATIC", "type" : "STATIC",
"value" : "/home/pi/FODIS/src/IRIS_FODIS" "value" : "/home/pi/FODIS/src"
}, },
{ {
"name" : "Qt5Core_DIR", "name" : "Qt5Core_DIR",

View File

@ -0,0 +1,177 @@
{
"inputs" :
[
{
"path" : "CMakeLists.txt"
},
{
"isGenerated" : true,
"path" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air/CMakeFiles/3.19.4268486-MSVC_2/CMakeSystem.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeSystemSpecificInitialize.cmake"
},
{
"isGenerated" : true,
"path" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air/CMakeFiles/3.19.4268486-MSVC_2/CMakeCCompiler.cmake"
},
{
"isGenerated" : true,
"path" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air/CMakeFiles/3.19.4268486-MSVC_2/CMakeCXXCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeSystemSpecificInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeGenericSystem.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeInitializeConfigs.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/UnixPaths.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeLanguageInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU-C.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-GNU-C.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCommonLanguageInclude.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCXXInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeLanguageInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU-CXX.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-GNU-CXX.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCommonLanguageInclude.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5/Qt5ConfigVersion.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5/Qt5Config.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfigVersion.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfig.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfigExtras.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreMacros.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeParseArguments.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5SerialPort/Qt5SerialPortConfigVersion.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5SerialPort/Qt5SerialPortConfig.cmake"
}
],
"kind" : "cmakeFiles",
"paths" :
{
"build" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air",
"source" : "/home/pi/FODIS/src"
},
"version" :
{
"major" : 1,
"minor" : 0
}
}

View File

@ -1,765 +0,0 @@
{
"inputs" :
[
{
"path" : "CMakeLists.txt"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineSystem.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeSystem.cmake.in"
},
{
"isGenerated" : true,
"path" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air/CMakeFiles/3.19.4268486-MSVC_2/CMakeSystem.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeUnixFindMake.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeSystemSpecificInitialize.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCompilerId.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCompilerIdDetection.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/ADSP-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Borland-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Cray-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GHS-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/HP-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IAR-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Intel-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IntelClang-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IntelDPCPP-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/MSVC-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/PGI-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/PathScale-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/SCO-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/TI-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Watcom-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/XL-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeFindBinUtils.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU-FindBinUtils.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCCompiler.cmake.in"
},
{
"isGenerated" : true,
"path" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air/CMakeFiles/3.19.4268486-MSVC_2/CMakeCCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCXXCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-Determine-CXX.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCompilerId.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCompilerIdDetection.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/ADSP-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Borland-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Cray-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GHS-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IAR-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Intel-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IntelClang-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IntelDPCPP-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/MSVC-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/PGI-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/PathScale-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/SCO-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/TI-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/Watcom-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeFindBinUtils.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU-FindBinUtils.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCXXCompiler.cmake.in"
},
{
"isGenerated" : true,
"path" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air/CMakeFiles/3.19.4268486-MSVC_2/CMakeCXXCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeSystemSpecificInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeGenericSystem.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeInitializeConfigs.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/UnixPaths.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeLanguageInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU-C.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-GNU-C.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCommonLanguageInclude.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeTestCCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeTestCompilerCommon.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCompilerABI.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeParseImplicitIncludeInfo.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeParseImplicitLinkInfo.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeTestCompilerCommon.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCCompilerABI.c"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCompileFeatures.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Internal/FeatureTesting.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCCompiler.cmake.in"
},
{
"isGenerated" : true,
"path" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air/CMakeFiles/3.19.4268486-MSVC_2/CMakeCCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCXXInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeLanguageInformation.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU-CXX.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Compiler/GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-GNU-CXX.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Platform/Linux-GNU.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCommonLanguageInclude.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeTestCXXCompiler.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeTestCompilerCommon.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCompilerABI.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeParseImplicitIncludeInfo.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeParseImplicitLinkInfo.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeTestCompilerCommon.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCXXCompilerABI.cpp"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeDetermineCompileFeatures.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/Internal/FeatureTesting.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeCXXCompiler.cmake.in"
},
{
"isGenerated" : true,
"path" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air/CMakeFiles/3.19.4268486-MSVC_2/CMakeCXXCompiler.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5/Qt5ConfigVersion.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5/Qt5Config.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfigVersion.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfig.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfigExtras.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreMacros.cmake"
},
{
"isCMake" : true,
"isExternal" : true,
"path" : "/opt/cmake/share/cmake-3.19/Modules/CMakeParseArguments.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5SerialPort/Qt5SerialPortConfigVersion.cmake"
},
{
"isExternal" : true,
"path" : "/usr/lib/arm-linux-gnueabihf/cmake/Qt5SerialPort/Qt5SerialPortConfig.cmake"
}
],
"kind" : "cmakeFiles",
"paths" :
{
"build" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air",
"source" : "/home/pi/FODIS/src/IRIS_FODIS"
},
"version" :
{
"major" : 1,
"minor" : 0
}
}

View File

@ -8,7 +8,7 @@
"build" : ".", "build" : ".",
"minimumCMakeVersion" : "minimumCMakeVersion" :
{ {
"string" : "3.8" "string" : "3.5"
}, },
"projectIndex" : 0, "projectIndex" : 0,
"source" : ".", "source" : ".",
@ -40,7 +40,7 @@
{ {
"directoryIndex" : 0, "directoryIndex" : 0,
"id" : "IRIS_FODIS::@6890427a1f51a3e7e1df", "id" : "IRIS_FODIS::@6890427a1f51a3e7e1df",
"jsonFile" : "target-IRIS_FODIS-Debug-b341901a77ae42829e9b.json", "jsonFile" : "target-IRIS_FODIS-Debug-641a6677628a9404d783.json",
"name" : "IRIS_FODIS", "name" : "IRIS_FODIS",
"projectIndex" : 0 "projectIndex" : 0
}, },
@ -58,7 +58,7 @@
"paths" : "paths" :
{ {
"build" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air", "build" : "/home/pi/FODIS/build_d/Linux-GCC-Debug-Nanopi-Air",
"source" : "/home/pi/FODIS/src/IRIS_FODIS" "source" : "/home/pi/FODIS/src"
}, },
"version" : "version" :
{ {

View File

@ -26,7 +26,7 @@
"objects" : "objects" :
[ [
{ {
"jsonFile" : "codemodel-v2-54783ae7f4ce51f7408b.json", "jsonFile" : "codemodel-v2-8ea1bdcb4d0ce82ccfd9.json",
"kind" : "codemodel", "kind" : "codemodel",
"version" : "version" :
{ {
@ -35,7 +35,7 @@
} }
}, },
{ {
"jsonFile" : "cache-v2-b4597bceb4d20db6f7b3.json", "jsonFile" : "cache-v2-78bdb650b288ab318e56.json",
"kind" : "cache", "kind" : "cache",
"version" : "version" :
{ {
@ -44,7 +44,7 @@
} }
}, },
{ {
"jsonFile" : "cmakeFiles-v1-e05cf6ea8a09c522f4ce.json", "jsonFile" : "cmakeFiles-v1-1f46acf8d916e80dda84.json",
"kind" : "cmakeFiles", "kind" : "cmakeFiles",
"version" : "version" :
{ {
@ -81,7 +81,7 @@
"responses" : "responses" :
[ [
{ {
"jsonFile" : "cache-v2-b4597bceb4d20db6f7b3.json", "jsonFile" : "cache-v2-78bdb650b288ab318e56.json",
"kind" : "cache", "kind" : "cache",
"version" : "version" :
{ {
@ -90,7 +90,7 @@
} }
}, },
{ {
"jsonFile" : "cmakeFiles-v1-e05cf6ea8a09c522f4ce.json", "jsonFile" : "cmakeFiles-v1-1f46acf8d916e80dda84.json",
"kind" : "cmakeFiles", "kind" : "cmakeFiles",
"version" : "version" :
{ {
@ -99,7 +99,7 @@
} }
}, },
{ {
"jsonFile" : "codemodel-v2-54783ae7f4ce51f7408b.json", "jsonFile" : "codemodel-v2-8ea1bdcb4d0ce82ccfd9.json",
"kind" : "codemodel", "kind" : "codemodel",
"version" : "version" :
{ {

View File

@ -184,39 +184,39 @@
}, },
{ {
"backtrace" : 10, "backtrace" : 10,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source" "path" : "/home/pi/FODIS/src/Source"
}, },
{ {
"backtrace" : 11, "backtrace" : 11,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source/FS" "path" : "/home/pi/FODIS/src/Source/FS"
}, },
{ {
"backtrace" : 12, "backtrace" : 12,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source/OSIF/include" "path" : "/home/pi/FODIS/src/Source/OSIF/include"
}, },
{ {
"backtrace" : 13, "backtrace" : 13,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source/ZZ_SDK" "path" : "/home/pi/FODIS/src/Source/ZZ_SDK"
}, },
{ {
"backtrace" : 14, "backtrace" : 14,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source/Settings" "path" : "/home/pi/FODIS/src/Source/Settings"
}, },
{ {
"backtrace" : 15, "backtrace" : 15,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source/GPS" "path" : "/home/pi/FODIS/src/Source/GPS"
}, },
{ {
"backtrace" : 16, "backtrace" : 16,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source/Logger" "path" : "/home/pi/FODIS/src/Source/Logger"
}, },
{ {
"backtrace" : 17, "backtrace" : 17,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source/Capture" "path" : "/home/pi/FODIS/src/Source/Capture"
}, },
{ {
"backtrace" : 18, "backtrace" : 18,
"path" : "/home/pi/FODIS/src/IRIS_FODIS/Source/Calibration" "path" : "/home/pi/FODIS/src/Source/Calibration"
}, },
{ {
"backtrace" : 19, "backtrace" : 19,
@ -287,7 +287,7 @@
}, },
{ {
"backtrace" : 2, "backtrace" : 2,
"fragment" : "-L/home/pi/FODIS/src/IRIS_FODIS/source/OSIF/DLib", "fragment" : "-L/home/pi/FODIS/src/source/OSIF/DLib",
"role" : "libraryPath" "role" : "libraryPath"
}, },
{ {
@ -296,7 +296,7 @@
"role" : "libraryPath" "role" : "libraryPath"
}, },
{ {
"fragment" : "-Wl,-rpath,/home/pi/FODIS/src/IRIS_FODIS/source/OSIF/DLib:/home/pi/SeaBrease/lib", "fragment" : "-Wl,-rpath,/home/pi/FODIS/src/source/OSIF/DLib:/home/pi/SeaBrease/lib",
"role" : "libraries" "role" : "libraries"
}, },
{ {