implement discovery prototol 2
This commit is contained in:
parent
5ca9e52769
commit
72138fad19
4
.gitignore
vendored
4
.gitignore
vendored
@ -7,7 +7,6 @@
|
|||||||
*.lai
|
*.lai
|
||||||
*.so
|
*.so
|
||||||
*.so.*
|
*.so.*
|
||||||
*.dll
|
|
||||||
*.dylib
|
*.dylib
|
||||||
|
|
||||||
# Qt-es
|
# Qt-es
|
||||||
@ -52,4 +51,5 @@ compile_commands.json
|
|||||||
|
|
||||||
*_qmlcache.qrc
|
*_qmlcache.qrc
|
||||||
Source/bin/*
|
Source/bin/*
|
||||||
Source/.qmake.stash
|
Source/.qmake.stash
|
||||||
|
Source/build
|
||||||
@ -24,7 +24,8 @@ HEADERS += \
|
|||||||
./src/DataEngine/cusdr_chirpProcessor.h \
|
./src/DataEngine/cusdr_chirpProcessor.h \
|
||||||
./src/DataEngine/cusdr_dataEngine.h \
|
./src/DataEngine/cusdr_dataEngine.h \
|
||||||
./src/DataEngine/cusdr_dataIO.h \
|
./src/DataEngine/cusdr_dataIO.h \
|
||||||
./src/DataEngine/cusdr_discoverer.h \
|
./src/DataEngine/cusdr_discoverer_P1.h \
|
||||||
|
./src/DataEngine/cusdr_discoverer_P2.h \
|
||||||
./src/DataEngine/cusdr_receiver.h \
|
./src/DataEngine/cusdr_receiver.h \
|
||||||
./src/DataEngine/soundout.h \
|
./src/DataEngine/soundout.h \
|
||||||
./src/DataEngine/fractresampler.h \
|
./src/DataEngine/fractresampler.h \
|
||||||
@ -99,7 +100,8 @@ HEADERS += \
|
|||||||
./src/DataEngine/cusdr_chirpProcessor.h \
|
./src/DataEngine/cusdr_chirpProcessor.h \
|
||||||
./src/DataEngine/cusdr_dataEngine.h \
|
./src/DataEngine/cusdr_dataEngine.h \
|
||||||
./src/DataEngine/cusdr_dataIO.h \
|
./src/DataEngine/cusdr_dataIO.h \
|
||||||
./src/DataEngine/cusdr_discoverer.h \
|
./src/DataEngine/cusdr_discoverer_P1.h \
|
||||||
|
./src/DataEngine/cusdr_discoverer_P2.h \
|
||||||
./src/DataEngine/cusdr_receiver.h \
|
./src/DataEngine/cusdr_receiver.h \
|
||||||
./src/DataEngine/soundout.h \
|
./src/DataEngine/soundout.h \
|
||||||
./src/DataEngine/fractresampler.h \
|
./src/DataEngine/fractresampler.h \
|
||||||
@ -172,7 +174,8 @@ SOURCES += \
|
|||||||
./src/DataEngine/cusdr_chirpProcessor.cpp \
|
./src/DataEngine/cusdr_chirpProcessor.cpp \
|
||||||
./src/DataEngine/cusdr_dataEngine.cpp \
|
./src/DataEngine/cusdr_dataEngine.cpp \
|
||||||
./src/DataEngine/cusdr_dataIO.cpp \
|
./src/DataEngine/cusdr_dataIO.cpp \
|
||||||
./src/DataEngine/cusdr_discoverer.cpp \
|
./src/DataEngine/cusdr_discoverer_P1.cpp \
|
||||||
|
./src/DataEngine/cusdr_discoverer_P2.cpp \
|
||||||
./src/DataEngine/cusdr_receiver.cpp \
|
./src/DataEngine/cusdr_receiver.cpp \
|
||||||
./src/DataEngine/soundout.cpp \
|
./src/DataEngine/soundout.cpp \
|
||||||
./src/DataEngine/fractresampler.cpp \
|
./src/DataEngine/fractresampler.cpp \
|
||||||
@ -240,7 +243,8 @@ SOURCES += \
|
|||||||
./src/DataEngine/cusdr_chirpProcessor.cpp \
|
./src/DataEngine/cusdr_chirpProcessor.cpp \
|
||||||
./src/DataEngine/cusdr_dataEngine.cpp \
|
./src/DataEngine/cusdr_dataEngine.cpp \
|
||||||
./src/DataEngine/cusdr_dataIO.cpp \
|
./src/DataEngine/cusdr_dataIO.cpp \
|
||||||
./src/DataEngine/cusdr_discoverer.cpp \
|
./src/DataEngine/cusdr_discoverer_P1.cpp \
|
||||||
|
./src/DataEngine/cusdr_discoverer_P2.cpp \
|
||||||
./src/DataEngine/cusdr_receiver.cpp \
|
./src/DataEngine/cusdr_receiver.cpp \
|
||||||
./src/DataEngine/soundout.cpp \
|
./src/DataEngine/soundout.cpp \
|
||||||
./src/DataEngine/fractresampler.cpp \
|
./src/DataEngine/fractresampler.cpp \
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
QT += core gui network multimedia opengl
|
QT += core gui network multimedia opengl widgets
|
||||||
QMAKE_CFLAGS_RELEASE = -O4
|
QMAKE_CFLAGS_RELEASE = -O4
|
||||||
QMAKE_CXXFLAGS_RELEASE = -O4
|
QMAKE_CXXFLAGS_RELEASE = -O4
|
||||||
QMAKE_LFLAGS_RELEASE = -O4
|
QMAKE_LFLAGS_RELEASE = -O4
|
||||||
@ -7,7 +7,7 @@ TARGET = cudaSDR
|
|||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
CONFIG += qt warn_on
|
CONFIG += qt warn_on
|
||||||
CONFIG += console
|
#CONFIG += console
|
||||||
CONFIG += mobility
|
CONFIG += mobility
|
||||||
CONFIG += $$QMAKE_HOST.arch
|
CONFIG += $$QMAKE_HOST.arch
|
||||||
message(CONFIG: $$QMAKE_HOST.arch)
|
message(CONFIG: $$QMAKE_HOST.arch)
|
||||||
@ -83,7 +83,7 @@ win32 {
|
|||||||
-luser32 \
|
-luser32 \
|
||||||
-lKernel32
|
-lKernel32
|
||||||
INCLUDEPATH +=$$PWD/lib
|
INCLUDEPATH +=$$PWD/lib
|
||||||
LIBS += $$PWD/lib/libfftw3f-3.a
|
LIBS += $$PWD/lib/libfftw3f-3.dll
|
||||||
}
|
}
|
||||||
|
|
||||||
OBJECTS_DIR = ./bld/o
|
OBJECTS_DIR = ./bld/o
|
||||||
|
|||||||
@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE QtCreatorProject>
|
<!DOCTYPE QtCreatorProject>
|
||||||
<!-- Written by QtCreator 4.12.4, 2020-07-17T22:47:45. -->
|
<!-- Written by QtCreator 13.0.0, 2024-04-12T15:14:32. -->
|
||||||
<qtcreator>
|
<qtcreator>
|
||||||
<data>
|
<data>
|
||||||
<variable>EnvironmentId</variable>
|
<variable>EnvironmentId</variable>
|
||||||
<value type="QByteArray">{e51181fc-176a-40ca-a8e0-59157399e831}</value>
|
<value type="QByteArray">{9df2227e-2f94-4455-9fee-2b0603509b19}</value>
|
||||||
</data>
|
</data>
|
||||||
<data>
|
<data>
|
||||||
<variable>ProjectExplorer.Project.ActiveTarget</variable>
|
<variable>ProjectExplorer.Project.ActiveTarget</variable>
|
||||||
<value type="int">0</value>
|
<value type="qlonglong">0</value>
|
||||||
</data>
|
</data>
|
||||||
<data>
|
<data>
|
||||||
<variable>ProjectExplorer.Project.EditorSettings</variable>
|
<variable>ProjectExplorer.Project.EditorSettings</variable>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
<value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
|
<value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
|
<value type="qlonglong" key="EditorConfiguration.CodeStyle.Count">2</value>
|
||||||
<value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
|
<value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
|
||||||
<value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
|
<value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
|
||||||
<value type="int" key="EditorConfiguration.IndentSize">4</value>
|
<value type="int" key="EditorConfiguration.IndentSize">4</value>
|
||||||
@ -37,33 +37,47 @@
|
|||||||
<value type="bool" key="EditorConfiguration.MouseHiding">true</value>
|
<value type="bool" key="EditorConfiguration.MouseHiding">true</value>
|
||||||
<value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
|
<value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
|
||||||
<value type="int" key="EditorConfiguration.PaddingMode">1</value>
|
<value type="int" key="EditorConfiguration.PaddingMode">1</value>
|
||||||
|
<value type="int" key="EditorConfiguration.PreferAfterWhitespaceComments">0</value>
|
||||||
|
<value type="bool" key="EditorConfiguration.PreferSingleLineComments">false</value>
|
||||||
<value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
|
<value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
|
||||||
<value type="bool" key="EditorConfiguration.ShowMargin">false</value>
|
<value type="bool" key="EditorConfiguration.ShowMargin">false</value>
|
||||||
<value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
|
<value type="int" key="EditorConfiguration.SmartBackspaceBehavior">2</value>
|
||||||
<value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
|
<value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
|
||||||
<value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
|
<value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
|
||||||
<value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
|
<value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
|
||||||
<value type="int" key="EditorConfiguration.TabSize">8</value>
|
<value type="int" key="EditorConfiguration.TabSize">8</value>
|
||||||
<value type="bool" key="EditorConfiguration.UseGlobal">true</value>
|
<value type="bool" key="EditorConfiguration.UseGlobal">true</value>
|
||||||
|
<value type="bool" key="EditorConfiguration.UseIndenter">false</value>
|
||||||
<value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
|
<value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
|
||||||
<value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
|
<value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
|
||||||
<value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
|
<value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
|
||||||
<value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
|
<value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
|
||||||
|
<value type="QString" key="EditorConfiguration.ignoreFileTypes">*.md, *.MD, Makefile</value>
|
||||||
<value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
|
<value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
|
||||||
|
<value type="bool" key="EditorConfiguration.skipTrailingWhitespace">true</value>
|
||||||
|
<value type="bool" key="EditorConfiguration.tintMarginArea">true</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
</data>
|
</data>
|
||||||
<data>
|
<data>
|
||||||
<variable>ProjectExplorer.Project.PluginSettings</variable>
|
<variable>ProjectExplorer.Project.PluginSettings</variable>
|
||||||
<valuemap type="QVariantMap">
|
<valuemap type="QVariantMap">
|
||||||
<valuelist type="QVariantList" key="ClangCodeModel.CustomCommandLineKey">
|
<valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks">
|
||||||
<value type="QString">-fno-delayed-template-parsing</value>
|
<value type="bool" key="AutoTest.Framework.Boost">true</value>
|
||||||
</valuelist>
|
<value type="bool" key="AutoTest.Framework.CTest">false</value>
|
||||||
<value type="bool" key="ClangCodeModel.UseGlobalConfig">true</value>
|
<value type="bool" key="AutoTest.Framework.Catch">true</value>
|
||||||
<value type="QString" key="ClangCodeModel.WarningConfigId">Builtin.Questionable</value>
|
<value type="bool" key="AutoTest.Framework.GTest">true</value>
|
||||||
|
<value type="bool" key="AutoTest.Framework.QtQuickTest">true</value>
|
||||||
|
<value type="bool" key="AutoTest.Framework.QtTest">true</value>
|
||||||
|
</valuemap>
|
||||||
|
<valuemap type="QVariantMap" key="AutoTest.CheckStates"/>
|
||||||
|
<value type="int" key="AutoTest.RunAfterBuild">0</value>
|
||||||
|
<value type="bool" key="AutoTest.UseGlobal">true</value>
|
||||||
<valuemap type="QVariantMap" key="ClangTools">
|
<valuemap type="QVariantMap" key="ClangTools">
|
||||||
|
<value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value>
|
||||||
<value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value>
|
<value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value>
|
||||||
<value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value>
|
<value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value>
|
||||||
<value type="int" key="ClangTools.ParallelJobs">4</value>
|
<value type="int" key="ClangTools.ParallelJobs">6</value>
|
||||||
|
<value type="bool" key="ClangTools.PreferConfigFile">true</value>
|
||||||
<valuelist type="QVariantList" key="ClangTools.SelectedDirs"/>
|
<valuelist type="QVariantList" key="ClangTools.SelectedDirs"/>
|
||||||
<valuelist type="QVariantList" key="ClangTools.SelectedFiles"/>
|
<valuelist type="QVariantList" key="ClangTools.SelectedFiles"/>
|
||||||
<valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/>
|
<valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/>
|
||||||
@ -74,35 +88,29 @@
|
|||||||
<data>
|
<data>
|
||||||
<variable>ProjectExplorer.Project.Target.0</variable>
|
<variable>ProjectExplorer.Project.Target.0</variable>
|
||||||
<valuemap type="QVariantMap">
|
<valuemap type="QVariantMap">
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 5.15.0 MinGW 32-bit</value>
|
<value type="QString" key="DeviceType">Desktop</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 5.15.0 MinGW 32-bit</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 5.15.2 MinGW 64-bit</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt5.5150.win32_mingw81_kit</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 5.15.2 MinGW 64-bit</value>
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt5.5152.win64_mingw81_kit</value>
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
|
<value type="qlonglong" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
|
<value type="qlonglong" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
|
||||||
|
<value type="qlonglong" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
|
||||||
<value type="bool">true</value>
|
|
||||||
<value type="int" key="EnableQmlDebugging">0</value>
|
<value type="int" key="EnableQmlDebugging">0</value>
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\cudaSDR\build-cudaSDR-Desktop_Qt_5_15_0_MinGW_32_bit-Debug</value>
|
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\source\cudaSDR\Source\build\Debug</value>
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/cudaSDR/build-cudaSDR-Desktop_Qt_5_15_0_MinGW_32_bit-Debug</value>
|
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/source/cudaSDR/Source/build/Debug</value>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
|
||||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||||
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
||||||
@ -111,49 +119,37 @@
|
|||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
||||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
||||||
|
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
|
||||||
|
<value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
|
||||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Отладка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Отладка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
|
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
|
||||||
<value type="int" key="QtQuickCompiler">2</value>
|
|
||||||
<value type="int" key="SeparateDebugInfo">2</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
|
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
|
||||||
<value type="bool">true</value>
|
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\source\cudaSDR\Source\build\Release</value>
|
||||||
<value type="int" key="EnableQmlDebugging">2</value>
|
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/source/cudaSDR/Source/build/Release</value>
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\cudaSDR\build-cudaSDR-Desktop_Qt_5_15_0_MinGW_32_bit-Release</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/cudaSDR/build-cudaSDR-Desktop_Qt_5_15_0_MinGW_32_bit-Release</value>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
|
||||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||||
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
||||||
@ -162,49 +158,39 @@
|
|||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
||||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
||||||
|
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
|
||||||
|
<value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
|
||||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Выпуск</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Выпуск</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
|
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
|
||||||
<value type="int" key="QtQuickCompiler">0</value>
|
<value type="int" key="QtQuickCompiler">0</value>
|
||||||
<value type="int" key="SeparateDebugInfo">2</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
|
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
|
||||||
<value type="bool">true</value>
|
|
||||||
<value type="int" key="EnableQmlDebugging">0</value>
|
<value type="int" key="EnableQmlDebugging">0</value>
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\cudaSDR\build-cudaSDR-Desktop_Qt_5_15_0_MinGW_32_bit-Profile</value>
|
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\source\cudaSDR\Source\build\Profile</value>
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/cudaSDR/build-cudaSDR-Desktop_Qt_5_15_0_MinGW_32_bit-Profile</value>
|
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/source/cudaSDR/Source/build/Profile</value>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
|
||||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||||
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
||||||
@ -213,19 +199,17 @@
|
|||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
||||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
||||||
|
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
|
||||||
|
<value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value>
|
||||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Профилирование</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Профилирование</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||||
@ -233,10 +217,10 @@
|
|||||||
<value type="int" key="QtQuickCompiler">0</value>
|
<value type="int" key="QtQuickCompiler">0</value>
|
||||||
<value type="int" key="SeparateDebugInfo">0</value>
|
<value type="int" key="SeparateDebugInfo">0</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">3</value>
|
<value type="qlonglong" key="ProjectExplorer.Target.BuildConfigurationCount">3</value>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
|
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Развёртывание</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Развёртывание</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Развёртывание</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Развёртывание</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
|
||||||
@ -246,342 +230,30 @@
|
|||||||
<value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
|
<value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
|
<value type="qlonglong" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
|
||||||
<value type="QString" key="Analyzer.Perf.CallgraphMode">dwarf</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Perf.Events">
|
|
||||||
<value type="QString">cpu-cycles</value>
|
|
||||||
</valuelist>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Perf.ExtraArguments"/>
|
|
||||||
<value type="int" key="Analyzer.Perf.Frequency">250</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Perf.RecordArguments">
|
|
||||||
<value type="QString">-e</value>
|
|
||||||
<value type="QString">cpu-cycles</value>
|
|
||||||
<value type="QString">--call-graph</value>
|
|
||||||
<value type="QString">dwarf,4096</value>
|
|
||||||
<value type="QString">-F</value>
|
|
||||||
<value type="QString">250</value>
|
|
||||||
</valuelist>
|
|
||||||
<value type="QString" key="Analyzer.Perf.SampleMode">-F</value>
|
|
||||||
<value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
|
<value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
|
||||||
<value type="int" key="Analyzer.Perf.StackSize">4096</value>
|
|
||||||
<value type="bool" key="Analyzer.QmlProfiler.AggregateTraces">false</value>
|
|
||||||
<value type="bool" key="Analyzer.QmlProfiler.FlushEnabled">false</value>
|
|
||||||
<value type="uint" key="Analyzer.QmlProfiler.FlushInterval">1000</value>
|
|
||||||
<value type="QString" key="Analyzer.QmlProfiler.LastTraceFile"></value>
|
|
||||||
<value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
|
<value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
|
||||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
|
<value type="int" key="Analyzer.Valgrind.Callgrind.CostFormat">0</value>
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
|
|
||||||
<value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
|
|
||||||
<value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
|
|
||||||
<value type="QString" key="Analyzer.Valgrind.KCachegrindExecutable">kcachegrind</value>
|
|
||||||
<value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
|
|
||||||
<value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
|
|
||||||
<value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
|
<value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
|
||||||
<value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
|
<valuelist type="QVariantList" key="CustomOutputParsers"/>
|
||||||
<value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
|
|
||||||
<value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
|
|
||||||
<value type="int">0</value>
|
|
||||||
<value type="int">1</value>
|
|
||||||
<value type="int">2</value>
|
|
||||||
<value type="int">3</value>
|
|
||||||
<value type="int">4</value>
|
|
||||||
<value type="int">5</value>
|
|
||||||
<value type="int">6</value>
|
|
||||||
<value type="int">7</value>
|
|
||||||
<value type="int">8</value>
|
|
||||||
<value type="int">9</value>
|
|
||||||
<value type="int">10</value>
|
|
||||||
<value type="int">11</value>
|
|
||||||
<value type="int">12</value>
|
|
||||||
<value type="int">13</value>
|
|
||||||
<value type="int">14</value>
|
|
||||||
</valuelist>
|
|
||||||
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
|
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
|
||||||
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
|
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:C:/Users/karpe/Documents/cudaSDR/Source/cudaSDR.pro</value>
|
<value type="bool" key="PE.EnvironmentAspect.PrintOnRun">false</value>
|
||||||
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">C:/Users/karpe/Documents/cudaSDR/Source/cudaSDR.pro</value>
|
<value type="QString" key="PerfRecordArgsId">-e cpu-cycles --call-graph "dwarf,4096" -F 250</value>
|
||||||
<value type="QString" key="RunConfiguration.Arguments"></value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||||
<value type="bool" key="RunConfiguration.Arguments.multi">false</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
|
||||||
<value type="QString" key="RunConfiguration.OverrideDebuggerStartup"></value>
|
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey"></value>
|
||||||
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
|
<value type="bool" key="ProjectExplorer.RunConfiguration.Customized">false</value>
|
||||||
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
|
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
|
||||||
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
|
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
|
||||||
<value type="QString" key="RunConfiguration.WorkingDirectory"></value>
|
|
||||||
<value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Users/karpe/Documents/cudaSDR/build-cudaSDR-Desktop_Qt_5_15_0_MinGW_32_bit-Debug/bin</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
|
<value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
|
||||||
</valuemap>
|
|
||||||
</data>
|
|
||||||
<data>
|
|
||||||
<variable>ProjectExplorer.Project.Target.1</variable>
|
|
||||||
<valuemap type="QVariantMap">
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 5.15.0 MinGW 64-bit</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 5.15.0 MinGW 64-bit</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt5.5150.win64_mingw81_kit</value>
|
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
|
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
|
|
||||||
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
|
|
||||||
<value type="bool">true</value>
|
|
||||||
<value type="int" key="EnableQmlDebugging">0</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\cudaSDR\build-cudaSDR-Desktop_Qt_5_15_0_MinGW_64_bit-Debug</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/cudaSDR/build-cudaSDR-Desktop_Qt_5_15_0_MinGW_64_bit-Debug</value>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
|
||||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
|
||||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
|
||||||
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
|
||||||
</valuemap>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
|
||||||
</valuemap>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
|
||||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Отладка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
|
||||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
|
|
||||||
<value type="int" key="QtQuickCompiler">2</value>
|
|
||||||
<value type="int" key="SeparateDebugInfo">2</value>
|
|
||||||
</valuemap>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
|
|
||||||
<value type="bool">true</value>
|
|
||||||
<value type="int" key="EnableQmlDebugging">2</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\cudaSDR\build-cudaSDR-Desktop_Qt_5_15_0_MinGW_64_bit-Release</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/cudaSDR/build-cudaSDR-Desktop_Qt_5_15_0_MinGW_64_bit-Release</value>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
|
||||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
|
||||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
|
||||||
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
|
||||||
</valuemap>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
|
||||||
</valuemap>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
|
||||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Выпуск</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
|
||||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
|
|
||||||
<value type="int" key="QtQuickCompiler">0</value>
|
|
||||||
<value type="int" key="SeparateDebugInfo">2</value>
|
|
||||||
</valuemap>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
|
|
||||||
<value type="bool">true</value>
|
|
||||||
<value type="int" key="EnableQmlDebugging">0</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\karpe\Documents\cudaSDR\build-cudaSDR-Desktop_Qt_5_15_0_MinGW_64_bit-Profile</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/karpe/Documents/cudaSDR/build-cudaSDR-Desktop_Qt_5_15_0_MinGW_64_bit-Profile</value>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
|
||||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
|
||||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
|
||||||
<valuelist type="QVariantList" key="QtProjectManager.QMakeBuildStep.SelectedAbis"/>
|
|
||||||
</valuemap>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Сборка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Сборка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
|
||||||
</valuemap>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
|
||||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.BuildTargets"/>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
|
||||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
|
||||||
<value type="bool" key="Qt4ProjectManager.MakeStep.OverrideMakeflags">false</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Очистка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Очистка</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
|
||||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
|
||||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Профилирование</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
|
||||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
|
|
||||||
<value type="int" key="QtQuickCompiler">0</value>
|
|
||||||
<value type="int" key="SeparateDebugInfo">0</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">3</value>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
|
||||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Развёртывание</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Развёртывание</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/>
|
|
||||||
<value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
|
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
|
|
||||||
<value type="QString" key="Analyzer.Perf.CallgraphMode">dwarf</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Perf.Events">
|
|
||||||
<value type="QString">cpu-cycles</value>
|
|
||||||
</valuelist>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Perf.ExtraArguments"/>
|
|
||||||
<value type="int" key="Analyzer.Perf.Frequency">250</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Perf.RecordArguments">
|
|
||||||
<value type="QString">-e</value>
|
|
||||||
<value type="QString">cpu-cycles</value>
|
|
||||||
<value type="QString">--call-graph</value>
|
|
||||||
<value type="QString">dwarf,4096</value>
|
|
||||||
<value type="QString">-F</value>
|
|
||||||
<value type="QString">250</value>
|
|
||||||
</valuelist>
|
|
||||||
<value type="QString" key="Analyzer.Perf.SampleMode">-F</value>
|
|
||||||
<value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
|
|
||||||
<value type="int" key="Analyzer.Perf.StackSize">4096</value>
|
|
||||||
<value type="bool" key="Analyzer.QmlProfiler.AggregateTraces">false</value>
|
|
||||||
<value type="bool" key="Analyzer.QmlProfiler.FlushEnabled">false</value>
|
|
||||||
<value type="uint" key="Analyzer.QmlProfiler.FlushInterval">1000</value>
|
|
||||||
<value type="QString" key="Analyzer.QmlProfiler.LastTraceFile"></value>
|
|
||||||
<value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
|
|
||||||
<value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
|
|
||||||
<value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
|
|
||||||
<value type="QString" key="Analyzer.Valgrind.KCachegrindExecutable">kcachegrind</value>
|
|
||||||
<value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
|
|
||||||
<value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
|
|
||||||
<value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
|
|
||||||
<value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
|
|
||||||
<value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
|
|
||||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
|
|
||||||
<value type="int">0</value>
|
|
||||||
<value type="int">1</value>
|
|
||||||
<value type="int">2</value>
|
|
||||||
<value type="int">3</value>
|
|
||||||
<value type="int">4</value>
|
|
||||||
<value type="int">5</value>
|
|
||||||
<value type="int">6</value>
|
|
||||||
<value type="int">7</value>
|
|
||||||
<value type="int">8</value>
|
|
||||||
<value type="int">9</value>
|
|
||||||
<value type="int">10</value>
|
|
||||||
<value type="int">11</value>
|
|
||||||
<value type="int">12</value>
|
|
||||||
<value type="int">13</value>
|
|
||||||
<value type="int">14</value>
|
|
||||||
</valuelist>
|
|
||||||
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
|
|
||||||
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
|
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:C:/Users/karpe/Documents/cudaSDR/Source/cudaSDR.pro</value>
|
|
||||||
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">C:/Users/karpe/Documents/cudaSDR/Source/cudaSDR.pro</value>
|
|
||||||
<value type="QString" key="RunConfiguration.Arguments"></value>
|
|
||||||
<value type="bool" key="RunConfiguration.Arguments.multi">false</value>
|
|
||||||
<value type="QString" key="RunConfiguration.OverrideDebuggerStartup"></value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
|
|
||||||
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
|
|
||||||
<value type="QString" key="RunConfiguration.WorkingDirectory"></value>
|
|
||||||
<value type="QString" key="RunConfiguration.WorkingDirectory.default"></value>
|
|
||||||
</valuemap>
|
|
||||||
<value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
|
|
||||||
</valuemap>
|
</valuemap>
|
||||||
</data>
|
</data>
|
||||||
<data>
|
<data>
|
||||||
<variable>ProjectExplorer.Project.TargetCount</variable>
|
<variable>ProjectExplorer.Project.TargetCount</variable>
|
||||||
<value type="int">2</value>
|
<value type="qlonglong">1</value>
|
||||||
</data>
|
</data>
|
||||||
<data>
|
<data>
|
||||||
<variable>ProjectExplorer.Project.Updater.FileVersion</variable>
|
<variable>ProjectExplorer.Project.Updater.FileVersion</variable>
|
||||||
|
|||||||
@ -132,8 +132,8 @@ typedef enum fftw_r2r_kind_do_not_use_me X(r2r_kind); \
|
|||||||
\
|
\
|
||||||
typedef fftw_write_char_func_do_not_use_me X(write_char_func); \
|
typedef fftw_write_char_func_do_not_use_me X(write_char_func); \
|
||||||
typedef fftw_read_char_func_do_not_use_me X(read_char_func); \
|
typedef fftw_read_char_func_do_not_use_me X(read_char_func); \
|
||||||
\
|
\
|
||||||
FFTW_EXTERN void X(execute)(const X(plan) p); \
|
FFTW_EXTERN void X(execute)(const X(plan) p); \
|
||||||
\
|
\
|
||||||
FFTW_EXTERN X(plan) X(plan_dft)(int rank, const int *n, \
|
FFTW_EXTERN X(plan) X(plan_dft)(int rank, const int *n, \
|
||||||
C *in, C *out, int sign, unsigned flags); \
|
C *in, C *out, int sign, unsigned flags); \
|
||||||
@ -320,6 +320,7 @@ FFTW_EXTERN void X(set_timelimit)(double t); \
|
|||||||
FFTW_EXTERN void X(plan_with_nthreads)(int nthreads); \
|
FFTW_EXTERN void X(plan_with_nthreads)(int nthreads); \
|
||||||
FFTW_EXTERN int X(init_threads)(void); \
|
FFTW_EXTERN int X(init_threads)(void); \
|
||||||
FFTW_EXTERN void X(cleanup_threads)(void); \
|
FFTW_EXTERN void X(cleanup_threads)(void); \
|
||||||
|
FFTW_EXTERN void X(make_planner_thread_safe)(void); \
|
||||||
\
|
\
|
||||||
FFTW_EXTERN int X(export_wisdom_to_filename)(const char *filename); \
|
FFTW_EXTERN int X(export_wisdom_to_filename)(const char *filename); \
|
||||||
FFTW_EXTERN void X(export_wisdom_to_file)(FILE *output_file); \
|
FFTW_EXTERN void X(export_wisdom_to_file)(FILE *output_file); \
|
||||||
@ -361,7 +362,7 @@ FFTW_DEFINE_API(FFTW_MANGLE_LONG_DOUBLE, long double, fftwl_complex)
|
|||||||
/* __float128 (quad precision) is a gcc extension on i386, x86_64, and ia64
|
/* __float128 (quad precision) is a gcc extension on i386, x86_64, and ia64
|
||||||
for gcc >= 4.6 (compiled in FFTW with --enable-quad-precision) */
|
for gcc >= 4.6 (compiled in FFTW with --enable-quad-precision) */
|
||||||
#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) \
|
#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) \
|
||||||
&& !(defined(__ICC) || defined(__INTEL_COMPILER)) \
|
&& !(defined(__ICC) || defined(__INTEL_COMPILER) || defined(__CUDACC__) || defined(__PGI)) \
|
||||||
&& (defined(__i386__) || defined(__x86_64__) || defined(__ia64__))
|
&& (defined(__i386__) || defined(__x86_64__) || defined(__ia64__))
|
||||||
# if !defined(FFTW_NO_Complex) && defined(_Complex_I) && defined(complex) && defined(I)
|
# if !defined(FFTW_NO_Complex) && defined(_Complex_I) && defined(complex) && defined(I)
|
||||||
/* note: __float128 is a typedef, which is not supported with the _Complex
|
/* note: __float128 is a typedef, which is not supported with the _Complex
|
||||||
|
|||||||
BIN
Source/lib/libfftw3f-3.dll
Normal file
BIN
Source/lib/libfftw3f-3.dll
Normal file
Binary file not shown.
@ -1434,7 +1434,7 @@ void DataEngine::disconnectDSPSlots() {
|
|||||||
|
|
||||||
void DataEngine::createDiscoverer() {
|
void DataEngine::createDiscoverer() {
|
||||||
|
|
||||||
m_discoverer = new Discoverer(&io);
|
m_discoverer = new DiscovererP1(&io);
|
||||||
|
|
||||||
m_discoveryThread = new QThreadEx();
|
m_discoveryThread = new QThreadEx();
|
||||||
m_discoverer->moveToThread(m_discoveryThread);
|
m_discoverer->moveToThread(m_discoveryThread);
|
||||||
|
|||||||
@ -48,7 +48,7 @@
|
|||||||
#include "cusdr_receiver.h"
|
#include "cusdr_receiver.h"
|
||||||
#include "cusdr_chirpProcessor.h"
|
#include "cusdr_chirpProcessor.h"
|
||||||
#include "cusdr_audioReceiver.h"
|
#include "cusdr_audioReceiver.h"
|
||||||
#include "cusdr_discoverer.h"
|
#include "cusdr_discoverer_P1.h"
|
||||||
#include "Util/qcircularbuffer.h"
|
#include "Util/qcircularbuffer.h"
|
||||||
#include "QtDSP/qtdsp_fft.h"
|
#include "QtDSP/qtdsp_fft.h"
|
||||||
#include "QtDSP/qtdsp_filter.h"
|
#include "QtDSP/qtdsp_filter.h"
|
||||||
@ -198,7 +198,7 @@ private:
|
|||||||
AudioEngine* m_audioEngine;
|
AudioEngine* m_audioEngine;
|
||||||
AudioOutProcessor* m_audioOutProcessor;
|
AudioOutProcessor* m_audioOutProcessor;
|
||||||
ChirpProcessor* m_chirpProcessor;
|
ChirpProcessor* m_chirpProcessor;
|
||||||
Discoverer* m_discoverer;
|
DiscovererP1* m_discoverer;
|
||||||
|
|
||||||
QThreadEx* m_discoveryThread;
|
QThreadEx* m_discoveryThread;
|
||||||
QThreadEx* m_dataIOThread;
|
QThreadEx* m_dataIOThread;
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
#define LOG_DISCOVERER
|
#define LOG_DISCOVERER
|
||||||
|
|
||||||
#include "cusdr_discoverer.h"
|
#include "cusdr_discoverer_P1.h"
|
||||||
#include "Util/cusdr_buttons.h"
|
#include "Util/cusdr_buttons.h"
|
||||||
|
|
||||||
|
|
||||||
@ -45,7 +45,7 @@
|
|||||||
//#define btn_height 18
|
//#define btn_height 18
|
||||||
//#define btn_width 74
|
//#define btn_width 74
|
||||||
|
|
||||||
Discoverer::Discoverer(THPSDRParameter *ioData)
|
DiscovererP1::DiscovererP1(THPSDRParameter *ioData)
|
||||||
: QObject()
|
: QObject()
|
||||||
, set(Settings::instance())
|
, set(Settings::instance())
|
||||||
, io(ioData)
|
, io(ioData)
|
||||||
@ -53,12 +53,12 @@ Discoverer::Discoverer(THPSDRParameter *ioData)
|
|||||||
m_deviceCards = set->getMetisCardsList();
|
m_deviceCards = set->getMetisCardsList();
|
||||||
}
|
}
|
||||||
|
|
||||||
Discoverer::~Discoverer() {
|
DiscovererP1::~DiscovererP1() {
|
||||||
}
|
}
|
||||||
|
|
||||||
TNetworkDevicecard mc;
|
TNetworkDevicecard mcP1;
|
||||||
|
|
||||||
void Discoverer::initHPSDRDevice() {
|
void DiscovererP1::initHPSDRDevice() {
|
||||||
|
|
||||||
m_searchTime.start();
|
m_searchTime.start();
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ void Discoverer::initHPSDRDevice() {
|
|||||||
io->networkIOMutex.unlock();
|
io->networkIOMutex.unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
int Discoverer::findHPSDRDevices() {
|
int DiscovererP1::findHPSDRDevices() {
|
||||||
|
|
||||||
int devicesFound = 0;
|
int devicesFound = 0;
|
||||||
|
|
||||||
@ -193,18 +193,18 @@ int Discoverer::findHPSDRDevices() {
|
|||||||
quint16 port;
|
quint16 port;
|
||||||
|
|
||||||
m_deviceDatagram.resize(socket.pendingDatagramSize());
|
m_deviceDatagram.resize(socket.pendingDatagramSize());
|
||||||
socket.readDatagram(m_deviceDatagram.data(), m_deviceDatagram.size(), &mc.ip_address, &port);
|
socket.readDatagram(m_deviceDatagram.data(), m_deviceDatagram.size(), &mcP1.ip_address, &port);
|
||||||
|
|
||||||
if (m_deviceDatagram[0] == (char)0xEF && m_deviceDatagram[1] == (char)0xFE) {
|
if (m_deviceDatagram[0] == (char)0xEF && m_deviceDatagram[1] == (char)0xFE) {
|
||||||
|
|
||||||
if (m_deviceDatagram[2] == (char)0x02) {
|
if (m_deviceDatagram[2] == (char)0x02) {
|
||||||
|
|
||||||
sprintf(mc.mac_address, "%02X:%02X:%02X:%02X:%02X:%02X",
|
sprintf(mcP1.mac_address, "%02X:%02X:%02X:%02X:%02X:%02X",
|
||||||
m_deviceDatagram[3] & 0xFF, m_deviceDatagram[4] & 0xFF, m_deviceDatagram[5] & 0xFF,
|
m_deviceDatagram[3] & 0xFF, m_deviceDatagram[4] & 0xFF, m_deviceDatagram[5] & 0xFF,
|
||||||
m_deviceDatagram[6] & 0xFF, m_deviceDatagram[7] & 0xFF, m_deviceDatagram[8] & 0xFF);
|
m_deviceDatagram[6] & 0xFF, m_deviceDatagram[7] & 0xFF, m_deviceDatagram[8] & 0xFF);
|
||||||
|
|
||||||
io->networkIOMutex.lock();
|
io->networkIOMutex.lock();
|
||||||
DISCOVERER_DEBUG << "Device found at " << qPrintable(mc.ip_address.toString()) << ":" << port << "; Mac addr: [" << mc.mac_address << "]";
|
DISCOVERER_DEBUG << "Device found at " << qPrintable(mcP1.ip_address.toString()) << ":" << port << "; Mac addr: [" << mcP1.mac_address << "]";
|
||||||
DISCOVERER_DEBUG << "Device code version: " << qPrintable(QString::number(m_deviceDatagram.at(9), 16));
|
DISCOVERER_DEBUG << "Device code version: " << qPrintable(QString::number(m_deviceDatagram.at(9), 16));
|
||||||
io->networkIOMutex.unlock();
|
io->networkIOMutex.unlock();
|
||||||
|
|
||||||
@ -224,17 +224,17 @@ int Discoverer::findHPSDRDevices() {
|
|||||||
str = "Hermes-Lite";
|
str = "Hermes-Lite";
|
||||||
}
|
}
|
||||||
|
|
||||||
mc.boardID = no;
|
mcP1.boardID = no;
|
||||||
mc.boardName = str;
|
mcP1.boardName = str;
|
||||||
io->networkIOMutex.lock();
|
io->networkIOMutex.lock();
|
||||||
DISCOVERER_DEBUG << "Device board ID: " << no;
|
DISCOVERER_DEBUG << "Device board ID: " << no;
|
||||||
DISCOVERER_DEBUG << "Device is: " << qPrintable(str);
|
DISCOVERER_DEBUG << "Device is: " << qPrintable(str);
|
||||||
io->networkIOMutex.unlock();
|
io->networkIOMutex.unlock();
|
||||||
|
|
||||||
m_deviceCards.append(mc);
|
m_deviceCards.append(mcP1);
|
||||||
|
|
||||||
str += " (";
|
str += " (";
|
||||||
str += mc.ip_address.toString();
|
str += mcP1.ip_address.toString();
|
||||||
str += ")";
|
str += ")";
|
||||||
|
|
||||||
set->addNetworkIOComboBoxEntry(str);
|
set->addNetworkIOComboBoxEntry(str);
|
||||||
@ -266,20 +266,20 @@ int Discoverer::findHPSDRDevices() {
|
|||||||
return devicesFound;
|
return devicesFound;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Discoverer::displayDiscoverySocketError(QAbstractSocket::SocketError error) {
|
void DiscovererP1::displayDiscoverySocketError(QAbstractSocket::SocketError error) {
|
||||||
|
|
||||||
io->networkIOMutex.lock();
|
io->networkIOMutex.lock();
|
||||||
DISCOVERER_DEBUG << "discovery socket error: " << error;
|
DISCOVERER_DEBUG << "discovery socket error: " << error;
|
||||||
io->networkIOMutex.unlock();
|
io->networkIOMutex.unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Discoverer::clear() {
|
void DiscovererP1::clear() {
|
||||||
|
|
||||||
//m_metisDeviceComboBox->clear();
|
//m_metisDeviceComboBox->clear();
|
||||||
m_deviceCards.clear();
|
m_deviceCards.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Discoverer::shutdownHPSDRDevice() {
|
void DiscovererP1::shutdownHPSDRDevice() {
|
||||||
|
|
||||||
QByteArray arr;
|
QByteArray arr;
|
||||||
arr.resize(64);
|
arr.resize(64);
|
||||||
@ -291,7 +291,7 @@ void Discoverer::shutdownHPSDRDevice() {
|
|||||||
for (int i = 4; i < 64; i++) arr[i] = 0x00;
|
for (int i = 4; i < 64; i++) arr[i] = 0x00;
|
||||||
|
|
||||||
QUdpSocket socket;
|
QUdpSocket socket;
|
||||||
QHostAddress addr = mc.ip_address;
|
QHostAddress addr = mcP1.ip_address;
|
||||||
|
|
||||||
for (int i = 0; i < 10; i++) {
|
for (int i = 0; i < 10; i++) {
|
||||||
|
|
||||||
@ -1,87 +1,87 @@
|
|||||||
/**
|
/**
|
||||||
* @file cusdr_discoverer.h
|
* @file cusdr_discoverer.h
|
||||||
* @brief HPSDR device discoverer header file
|
* @brief HPSDR device discoverer header file
|
||||||
* @author Hermann von Hasseln, DL3HVH
|
* @author Hermann von Hasseln, DL3HVH
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
* @date 2012-05-19
|
* @date 2012-05-19
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
* Copyright 2012 Hermann von Hasseln, DL3HVH
|
* Copyright 2012 Hermann von Hasseln, DL3HVH
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Library General Public License version 2 as
|
* it under the terms of the GNU Library General Public License version 2 as
|
||||||
* published by the Free Software Foundation
|
* published by the Free Software Foundation
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details
|
* GNU General Public License for more details
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Library General Public
|
* You should have received a copy of the GNU Library General Public
|
||||||
* License along with this program; if not, write to the
|
* License along with this program; if not, write to the
|
||||||
* Free Software Foundation, Inc.,
|
* Free Software Foundation, Inc.,
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _CUSDR_DISCOVERER_H
|
#ifndef _CUSDR_DISCOVERER_P1_H
|
||||||
#define _CUSDR_DISCOVERER_H
|
#define _CUSDR_DISCOVERER_P1_H
|
||||||
|
|
||||||
//#include <QObject>
|
//#include <QObject>
|
||||||
//#include <QComboBox>
|
//#include <QComboBox>
|
||||||
//#include <QDialogButtonBox>
|
//#include <QDialogButtonBox>
|
||||||
//#include <QLabel>
|
//#include <QLabel>
|
||||||
//#include <QPushButton>
|
//#include <QPushButton>
|
||||||
//#include <QVBoxLayout>
|
//#include <QVBoxLayout>
|
||||||
//#include <QCheckBox>
|
//#include <QCheckBox>
|
||||||
//#include <QSlider>
|
//#include <QSlider>
|
||||||
//#include <QSpinBox>
|
//#include <QSpinBox>
|
||||||
//#include <QElapsedTimer>
|
//#include <QElapsedTimer>
|
||||||
|
|
||||||
#include "cusdr_settings.h"
|
#include "cusdr_settings.h"
|
||||||
|
|
||||||
#ifdef LOG_DISCOVERER
|
#ifdef LOG_DISCOVERER
|
||||||
# define DISCOVERER_DEBUG qDebug().nospace() << "Discoverer::\t"
|
# define DISCOVERER_DEBUG qDebug().nospace() << "Discoverer::\t"
|
||||||
#else
|
#else
|
||||||
# define DISCOVERER_DEBUG nullDebug()
|
# define DISCOVERER_DEBUG nullDebug()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
class Discoverer : public QObject {
|
class DiscovererP1 : public QObject {
|
||||||
|
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Discoverer(THPSDRParameter *ioData = 0);
|
DiscovererP1(THPSDRParameter *ioData = 0);
|
||||||
~Discoverer();
|
~DiscovererP1();
|
||||||
|
|
||||||
int findHPSDRDevices();
|
int findHPSDRDevices();
|
||||||
void clear();
|
void clear();
|
||||||
void shutdownHPSDRDevice();
|
void shutdownHPSDRDevice();
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void initHPSDRDevice();
|
void initHPSDRDevice();
|
||||||
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void displayDiscoverySocketError(QAbstractSocket::SocketError error);
|
void displayDiscoverySocketError(QAbstractSocket::SocketError error);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Settings* set;
|
Settings* set;
|
||||||
THPSDRParameter* io;
|
THPSDRParameter* io;
|
||||||
QTime m_searchTime;
|
QTime m_searchTime;
|
||||||
|
|
||||||
QByteArray m_findDatagram;
|
QByteArray m_findDatagram;
|
||||||
QByteArray m_deviceDatagram;
|
QByteArray m_deviceDatagram;
|
||||||
|
|
||||||
//QString m_deviceStr;
|
//QString m_deviceStr;
|
||||||
|
|
||||||
TNetworkDevicecard m_deviceCard;
|
TNetworkDevicecard m_deviceCard;
|
||||||
QList<TNetworkDevicecard> m_deviceCards;
|
QList<TNetworkDevicecard> m_deviceCards;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _CUSDR_DISCOVERER_H
|
#endif // _CUSDR_DISCOVERER_P1_H
|
||||||
293
Source/src/DataEngine/cusdr_discoverer_P2.cpp
Normal file
293
Source/src/DataEngine/cusdr_discoverer_P2.cpp
Normal file
@ -0,0 +1,293 @@
|
|||||||
|
/**
|
||||||
|
* @file cusdr_discoverer.cpp
|
||||||
|
* @brief HPSDR device discoverer class
|
||||||
|
* @author Hermann von Hasseln, DL3HVH
|
||||||
|
* @version 0.1
|
||||||
|
* @date 2012-05-19
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* Copyright 2012 Hermann von Hasseln, DL3HVH
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Library General Public License version 2 as
|
||||||
|
* published by the Free Software Foundation
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this program; if not, write to the
|
||||||
|
* Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define LOG_DISCOVERER
|
||||||
|
|
||||||
|
#include "cusdr_discoverer_P2.h"
|
||||||
|
#include "Util/cusdr_buttons.h"
|
||||||
|
|
||||||
|
|
||||||
|
DiscovererP2::DiscovererP2(THPSDRParameter *ioData)
|
||||||
|
: QObject()
|
||||||
|
, set(Settings::instance())
|
||||||
|
, io(ioData)
|
||||||
|
{
|
||||||
|
m_deviceCards = set->getMetisCardsList();
|
||||||
|
}
|
||||||
|
|
||||||
|
DiscovererP2::~DiscovererP2() {
|
||||||
|
}
|
||||||
|
|
||||||
|
TNetworkDevicecard mcP2;
|
||||||
|
|
||||||
|
void DiscovererP2::initHPSDRDevice() {
|
||||||
|
|
||||||
|
m_searchTime.start();
|
||||||
|
|
||||||
|
int deviceNo = 0;
|
||||||
|
while (deviceNo == 0) {
|
||||||
|
|
||||||
|
deviceNo = findHPSDRDevices();
|
||||||
|
|
||||||
|
if (deviceNo > 1) {
|
||||||
|
|
||||||
|
set->setHPSDRDeviceNumber(deviceNo);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (deviceNo > 0) {
|
||||||
|
|
||||||
|
set->setHPSDRDeviceNumber(deviceNo);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (m_searchTime.elapsed() > 1000) {
|
||||||
|
|
||||||
|
set->setHPSDRDeviceNumber(0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "no device protocol 2 found - trying again...";
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
io->devicefound.wakeAll();
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
int DiscovererP2::findHPSDRDevices() {
|
||||||
|
|
||||||
|
int devicesFound = 0;
|
||||||
|
|
||||||
|
m_findDatagram.resize(60);
|
||||||
|
m_findDatagram[0] = (char)0x00;
|
||||||
|
m_findDatagram[1] = (char)0x00;
|
||||||
|
m_findDatagram[2] = (char)0x00;
|
||||||
|
m_findDatagram[3] = (char)0x00;
|
||||||
|
m_findDatagram[4] = (char)0x02;
|
||||||
|
for (int i = 5; i < 60; i++)
|
||||||
|
m_findDatagram[i] = (char)0x00;
|
||||||
|
|
||||||
|
QUdpSocket socket;
|
||||||
|
|
||||||
|
CHECKED_CONNECT(
|
||||||
|
&socket,
|
||||||
|
SIGNAL(error(QAbstractSocket::SocketError)),
|
||||||
|
this,
|
||||||
|
SLOT(displayDiscoverySocketError(QAbstractSocket::SocketError)));
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "using " << qPrintable(QHostAddress(set->getHPSDRDeviceLocalAddr()).toString()) << " for discovery protocol 2.";
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
|
||||||
|
// clear comboBox entries in the network dialogue
|
||||||
|
set->clearNetworkIOComboBoxEntry();
|
||||||
|
|
||||||
|
#if defined(Q_OS_WIN32)
|
||||||
|
|
||||||
|
if (socket.bind(
|
||||||
|
QHostAddress(set->getHPSDRDeviceLocalAddr()), 0,
|
||||||
|
QUdpSocket::ReuseAddressHint | QUdpSocket::ShareAddress))
|
||||||
|
//QUdpSocket::ReuseAddressHint))
|
||||||
|
{
|
||||||
|
set->setMetisPort(this, socket.localPort());
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "discovery_socket protocol 2 bound successfully to port " << socket.localPort();
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "discovery_socket protocol 2 bind failed.";
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
|
||||||
|
socket.close();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#elif defined(Q_OS_LINUX)
|
||||||
|
|
||||||
|
if (socket.bind(
|
||||||
|
QHostAddress(set->getHPSDRDeviceLocalAddr()),
|
||||||
|
QUdpSocket::DefaultForPlatform))
|
||||||
|
{
|
||||||
|
CHECKED_CONNECT(
|
||||||
|
&socket,
|
||||||
|
SIGNAL(error(QAbstractSocket::SocketError)),
|
||||||
|
this,
|
||||||
|
SLOT(displayDiscoverySocketError(QAbstractSocket::SocketError)));
|
||||||
|
|
||||||
|
set->setMetisPort(this, socket.localPort());
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "discovery_socket protocol 2 bound successfully to port " << socket.localPort();
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "discovery_socket protocol 2 bind failed.";
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
|
||||||
|
socket.close();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (socket.writeDatagram(m_findDatagram, QHostAddress::Broadcast, DISCOVERY_PORT) == 60) {
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "discovery protocol 2 data sent.";
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "discovery protocol 2 data not sent.";
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// wait a little
|
||||||
|
//SleeperThread::msleep(30);
|
||||||
|
SleeperThread::msleep(500);
|
||||||
|
|
||||||
|
while (socket.hasPendingDatagrams()) {
|
||||||
|
|
||||||
|
quint16 port;
|
||||||
|
int status;
|
||||||
|
int device;
|
||||||
|
|
||||||
|
m_deviceDatagram.resize(socket.pendingDatagramSize());
|
||||||
|
socket.readDatagram(m_deviceDatagram.data(), m_deviceDatagram.size(), &mcP2.ip_address, &port);
|
||||||
|
|
||||||
|
if (m_deviceDatagram[0] == (char)0 && m_deviceDatagram[1] == (char)0 && m_deviceDatagram[2] == (char)0 && m_deviceDatagram[3] == (char)0) {
|
||||||
|
status = m_deviceDatagram[4] & 0xFF;
|
||||||
|
|
||||||
|
if (status == 2 || status == 3) {
|
||||||
|
|
||||||
|
sprintf(mcP2.mac_address, "%02X:%02X:%02X:%02X:%02X:%02X",
|
||||||
|
m_deviceDatagram[5] & 0xFF, m_deviceDatagram[6] & 0xFF, m_deviceDatagram[7] & 0xFF,
|
||||||
|
m_deviceDatagram[8] & 0xFF, m_deviceDatagram[9] & 0xFF, m_deviceDatagram[10] & 0xFF);
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "Device on protocol 2 found at " << qPrintable(mcP2.ip_address.toString()) << ":" << port << "; Mac addr: [" << mcP2.mac_address << "]";
|
||||||
|
DISCOVERER_DEBUG << "Device protocol 2 code version: " << qPrintable(QString::number(m_deviceDatagram[13], 10));
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
|
||||||
|
device = m_deviceDatagram[11] & 0xFF;
|
||||||
|
QString str;
|
||||||
|
if (device == 0)
|
||||||
|
str = "ATLAS";
|
||||||
|
else if (device == 1)
|
||||||
|
str = "HERMES_ANAN-10_100)";
|
||||||
|
else if (device == 2)
|
||||||
|
str = "HERMES_ANAN_10E_100B)";
|
||||||
|
else if (device == 3)
|
||||||
|
str = "ANGELA_ANAN_100D)";
|
||||||
|
else if (device == 4)
|
||||||
|
str = "ORION_ANAN_200D)";
|
||||||
|
else if (device == 5)
|
||||||
|
str = "ORION_Mk_II_ANAN-7_8000DLE)";
|
||||||
|
else if (device == 6) {
|
||||||
|
str = "Hermes-Lite";
|
||||||
|
}
|
||||||
|
|
||||||
|
mcP2.boardID = device;
|
||||||
|
mcP2.boardName = str;
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "Protocol 2 device board ID: " << device;
|
||||||
|
DISCOVERER_DEBUG << "Protocol 2 device is: " << qPrintable(str);
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
|
||||||
|
m_deviceCards.append(mcP2);
|
||||||
|
|
||||||
|
str += " (";
|
||||||
|
str += mcP2.ip_address.toString();
|
||||||
|
str += ")";
|
||||||
|
|
||||||
|
set->addNetworkIOComboBoxEntry(str);
|
||||||
|
devicesFound++;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "Device protocol 2 already sending data - trying to shut down...";
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
|
||||||
|
shutdownHPSDRDevice();
|
||||||
|
clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
set->setMetisCardList(m_deviceCards);
|
||||||
|
|
||||||
|
if (devicesFound == 1) {
|
||||||
|
|
||||||
|
set->setCurrentHPSDRDevice(m_deviceCards.at(0));
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "Device selected: " << qPrintable(m_deviceCards.at(0).ip_address.toString());
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
socket.close();
|
||||||
|
return devicesFound;
|
||||||
|
}
|
||||||
|
|
||||||
|
void DiscovererP2::displayDiscoverySocketError(QAbstractSocket::SocketError error) {
|
||||||
|
|
||||||
|
io->networkIOMutex.lock();
|
||||||
|
DISCOVERER_DEBUG << "discovery protocol 2 socket error: " << error;
|
||||||
|
io->networkIOMutex.unlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
void DiscovererP2::clear() {
|
||||||
|
|
||||||
|
//m_metisDeviceComboBox->clear();
|
||||||
|
m_deviceCards.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
void DiscovererP2::shutdownHPSDRDevice() {
|
||||||
|
|
||||||
|
long sequence = 0;
|
||||||
|
QByteArray arr;
|
||||||
|
arr.resize(1444);
|
||||||
|
|
||||||
|
arr[0] = sequence >> 24;
|
||||||
|
arr[1] = sequence >> 16;
|
||||||
|
arr[2] = sequence >> 8;
|
||||||
|
arr[3] = sequence;
|
||||||
|
arr[4] = 0;
|
||||||
|
|
||||||
|
QUdpSocket socket;
|
||||||
|
QHostAddress addr = mcP2.ip_address;
|
||||||
|
|
||||||
|
if (socket.writeDatagram(arr, addr, HIGH_PRIORITY_FROM_HOST_PORT) < 0) {
|
||||||
|
DISCOVERER_DEBUG << "protocol 2 forced shutdown socket write failed.";
|
||||||
|
}
|
||||||
|
}
|
||||||
76
Source/src/DataEngine/cusdr_discoverer_P2.h
Normal file
76
Source/src/DataEngine/cusdr_discoverer_P2.h
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
/**
|
||||||
|
* @file cusdr_discoverer.h
|
||||||
|
* @brief HPSDR device discoverer header file
|
||||||
|
* @author Hermann von Hasseln, DL3HVH
|
||||||
|
* @version 0.1
|
||||||
|
* @date 2012-05-19
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* Copyright 2012 Hermann von Hasseln, DL3HVH
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Library General Public License version 2 as
|
||||||
|
* published by the Free Software Foundation
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this program; if not, write to the
|
||||||
|
* Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _CUSDR_DISCOVERER_P2_H
|
||||||
|
#define _CUSDR_DISCOVERER_P2_H
|
||||||
|
|
||||||
|
#include "cusdr_settings.h"
|
||||||
|
|
||||||
|
#ifdef LOG_DISCOVERER
|
||||||
|
# define DISCOVERER_DEBUG qDebug().nospace() << "DiscovererP2::\t"
|
||||||
|
#else
|
||||||
|
# define DISCOVERER_DEBUG nullDebug()
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
class DiscovererP2 : public QObject {
|
||||||
|
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
DiscovererP2(THPSDRParameter *ioData = 0);
|
||||||
|
~DiscovererP2();
|
||||||
|
|
||||||
|
int findHPSDRDevices();
|
||||||
|
void clear();
|
||||||
|
void shutdownHPSDRDevice();
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void initHPSDRDevice();
|
||||||
|
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void displayDiscoverySocketError(QAbstractSocket::SocketError error);
|
||||||
|
|
||||||
|
private:
|
||||||
|
Settings* set;
|
||||||
|
THPSDRParameter* io;
|
||||||
|
QTime m_searchTime;
|
||||||
|
|
||||||
|
QByteArray m_findDatagram;
|
||||||
|
QByteArray m_deviceDatagram;
|
||||||
|
|
||||||
|
//QString m_deviceStr;
|
||||||
|
|
||||||
|
TNetworkDevicecard m_deviceCard;
|
||||||
|
QList<TNetworkDevicecard> m_deviceCards;
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // _CUSDR_DISCOVERER_P2_H
|
||||||
@ -180,6 +180,10 @@ static int my_fftw_read_char(void *f) { return fgetc((FILE *) f); }
|
|||||||
#define DEVICE_PORT 1024
|
#define DEVICE_PORT 1024
|
||||||
#define DATA_PORT 8886
|
#define DATA_PORT 8886
|
||||||
|
|
||||||
|
//PROTOCOL 2 definitions
|
||||||
|
#define DISCOVERY_PORT 1024
|
||||||
|
#define HIGH_PRIORITY_FROM_HOST_PORT 1027
|
||||||
|
|
||||||
// **************************************
|
// **************************************
|
||||||
// Audio definitions
|
// Audio definitions
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user