first commit
commit
b18dfbda2b
@ -0,0 +1,43 @@
|
||||
#-------------------------------------------------
|
||||
#
|
||||
# Project created by QtCreator 2024-09-19T10:32:24
|
||||
#
|
||||
#-------------------------------------------------
|
||||
|
||||
QT += core gui
|
||||
QT += serialport
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||
|
||||
TARGET = CableTool
|
||||
TEMPLATE = app
|
||||
|
||||
# The following define makes your compiler emit warnings if you use
|
||||
# any feature of Qt which has been marked as deprecated (the exact warnings
|
||||
# depend on your compiler). Please consult the documentation of the
|
||||
# deprecated API in order to know how to port your code away from it.
|
||||
DEFINES += QT_DEPRECATED_WARNINGS
|
||||
|
||||
# You can also make your code fail to compile if you use deprecated APIs.
|
||||
# In order to do so, uncomment the following line.
|
||||
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
||||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||
|
||||
CONFIG += c++11
|
||||
|
||||
SOURCES += \
|
||||
main.cpp \
|
||||
widget.cpp \
|
||||
common.cpp
|
||||
|
||||
HEADERS += \
|
||||
widget.h \
|
||||
common.h
|
||||
|
||||
# Default rules for deployment.
|
||||
qnx: target.path = /tmp/$${TARGET}/bin
|
||||
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||||
!isEmpty(target.path): INSTALLS += target
|
||||
|
||||
FORMS += \
|
||||
form.ui
|
@ -0,0 +1,322 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE QtCreatorProject>
|
||||
<!-- Written by QtCreator 4.7.2, 2024-09-26T17:24:01. -->
|
||||
<qtcreator>
|
||||
<data>
|
||||
<variable>EnvironmentId</variable>
|
||||
<value type="QByteArray">{a69b2536-8d4a-4969-8b95-1e79af475b44}</value>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.ActiveTarget</variable>
|
||||
<value type="int">0</value>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.EditorSettings</variable>
|
||||
<valuemap type="QVariantMap">
|
||||
<value type="bool" key="EditorConfiguration.AutoIndent">true</value>
|
||||
<value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
|
||||
<value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
|
||||
<valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
|
||||
<value type="QString" key="language">Cpp</value>
|
||||
<valuemap type="QVariantMap" key="value">
|
||||
<value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
|
||||
</valuemap>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
|
||||
<value type="QString" key="language">QmlJS</value>
|
||||
<valuemap type="QVariantMap" key="value">
|
||||
<value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
|
||||
</valuemap>
|
||||
</valuemap>
|
||||
<value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
|
||||
<value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
|
||||
<value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
|
||||
<value type="int" key="EditorConfiguration.IndentSize">4</value>
|
||||
<value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
|
||||
<value type="int" key="EditorConfiguration.MarginColumn">80</value>
|
||||
<value type="bool" key="EditorConfiguration.MouseHiding">true</value>
|
||||
<value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
|
||||
<value type="int" key="EditorConfiguration.PaddingMode">1</value>
|
||||
<value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
|
||||
<value type="bool" key="EditorConfiguration.ShowMargin">false</value>
|
||||
<value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
|
||||
<value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
|
||||
<value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
|
||||
<value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
|
||||
<value type="int" key="EditorConfiguration.TabSize">8</value>
|
||||
<value type="bool" key="EditorConfiguration.UseGlobal">true</value>
|
||||
<value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
|
||||
<value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
|
||||
<value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
|
||||
<value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
|
||||
<value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
|
||||
</valuemap>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.PluginSettings</variable>
|
||||
<valuemap type="QVariantMap">
|
||||
<valuelist type="QVariantList" key="ClangCodeModel.CustomCommandLineKey">
|
||||
<value type="QString">-fno-delayed-template-parsing</value>
|
||||
</valuelist>
|
||||
<value type="bool" key="ClangCodeModel.UseGlobalConfig">true</value>
|
||||
</valuemap>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.Target.0</variable>
|
||||
<valuemap type="QVariantMap">
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 5.11.3 MinGW 32bit</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 5.11.3 MinGW 32bit</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt5.5113.win32_mingw53_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="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:/work/QtProject/CableTool/build-CableTool-Desktop_Qt_5_11_3_MinGW_32bit-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.DefaultDisplayName">qmake</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">true</value>
|
||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.SeparateDebugInfo">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.UseQtQuickCompiler">false</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<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>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</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.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<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>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</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.DefaultDisplayName">Debug</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
|
||||
<value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
|
||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:/work/QtProject/CableTool/build-CableTool-Desktop_Qt_5_11_3_MinGW_32bit-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.DefaultDisplayName">qmake</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">false</value>
|
||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.SeparateDebugInfo">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.UseQtQuickCompiler">true</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<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>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</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.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<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>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</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.DefaultDisplayName">Release</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
|
||||
<value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
|
||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:/work/QtProject/CableTool/build-CableTool-Desktop_Qt_5_11_3_MinGW_32bit-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.DefaultDisplayName">qmake</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">true</value>
|
||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.SeparateDebugInfo">true</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.UseQtQuickCompiler">true</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<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>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</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.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<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>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</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.DefaultDisplayName">Profile</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Profile</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
|
||||
<value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</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>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy Configuration</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></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="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="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.DefaultDisplayName">CableTool</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:D:/work/QtProject/CableTool/CableTool/CableTool.pro</value>
|
||||
<value type="bool" key="QmakeProjectManager.QmakeRunConfiguration.UseLibrarySearchPath">true</value>
|
||||
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.CommandLineArguments"></value>
|
||||
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.ProFile">CableTool.pro</value>
|
||||
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory"></value>
|
||||
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory.default">D:/work/QtProject/CableTool/build-CableTool-Desktop_Qt_5_11_3_MinGW_32bit-Debug</value>
|
||||
<value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
|
||||
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
|
||||
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">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>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
|
||||
</valuemap>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.TargetCount</variable>
|
||||
<value type="int">1</value>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.Updater.FileVersion</variable>
|
||||
<value type="int">18</value>
|
||||
</data>
|
||||
<data>
|
||||
<variable>Version</variable>
|
||||
<value type="int">18</value>
|
||||
</data>
|
||||
</qtcreator>
|
@ -0,0 +1,109 @@
|
||||
#include "common.h"
|
||||
#include <QTextStream>
|
||||
#include <QDebug>
|
||||
|
||||
#define CRC32_CHAR_BIT 8
|
||||
static uint32_t crc32Table[256];
|
||||
|
||||
|
||||
uint32_t crc32_reflect(uint32_t value, uint8_t bits)
|
||||
{
|
||||
uint32_t reflection = 0;
|
||||
|
||||
for(uint8_t i = 0; i < bits ; i++)
|
||||
{
|
||||
if (value & (1u << i))
|
||||
reflection |= 1 << (bits - 1 - i);
|
||||
}
|
||||
|
||||
return reflection;
|
||||
}
|
||||
|
||||
/* crc32 初始化. */
|
||||
void crc32_table_init(void)
|
||||
{
|
||||
uint32_t int1 = 1;
|
||||
uint32_t const value_high_bit = int1 << 31u;
|
||||
uint8_t dividend = 0;
|
||||
|
||||
do
|
||||
{
|
||||
uint32_t remainder = 0;
|
||||
for(uint8_t mask = 1u << (CRC32_CHAR_BIT - 1u); mask; mask >>= 1)
|
||||
{
|
||||
if (dividend & mask)
|
||||
remainder ^= value_high_bit;
|
||||
|
||||
if (remainder & value_high_bit)
|
||||
{
|
||||
remainder <<= 1;
|
||||
remainder ^= 0x04C11DB7u;
|
||||
}
|
||||
else
|
||||
remainder <<= 1;
|
||||
}
|
||||
|
||||
crc32Table[crc32_reflect(dividend, CRC32_CHAR_BIT)] = crc32_reflect(remainder, 32);
|
||||
}
|
||||
while(++dividend);
|
||||
}
|
||||
|
||||
|
||||
uint32_t crc32(void const *buf, uint32_t byte_count)
|
||||
{
|
||||
uint32_t rem = 0xFFFFFFFF;
|
||||
uint8_t const * const b_begin = (uint8_t*)buf;
|
||||
uint8_t const * const b_end = b_begin + byte_count;
|
||||
|
||||
for(uint8_t const *p = b_begin; p < b_end; p++)
|
||||
{
|
||||
uint8_t const byte_index = *p ^ rem;
|
||||
rem >>= CRC32_CHAR_BIT;
|
||||
rem ^= crc32Table[ byte_index ];
|
||||
//char *nptr = (char *)&rem;
|
||||
//printHexArray(nptr, 4);
|
||||
}
|
||||
return ~rem;
|
||||
}
|
||||
|
||||
int32_t stringToChar(QString str, char *buf, uint32_t len)
|
||||
{
|
||||
if (nullptr == buf)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
QByteArray ba = str.toLatin1();
|
||||
|
||||
if (ba.length() <= 0
|
||||
|| ba.length() >= len)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
|
||||
memset(buf, 0, len);
|
||||
memcpy(buf, ba.data(), ba.length());
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
void printHexArray(const char *msg, const char *array, int length)
|
||||
{
|
||||
QTextStream out(stdout);
|
||||
out << msg << "###printHexArray" << "(len:" << length << ")\n";
|
||||
for (int i = 0; i < length; ++i)
|
||||
{
|
||||
out << QString::number(static_cast<unsigned char>(array[i]), 16)
|
||||
.toUpper().rightJustified(2, '0'); // 转换为16进制并且前面补0
|
||||
if (i < length - 1)
|
||||
{
|
||||
out << " "; // 每个元素之间加空格
|
||||
}
|
||||
|
||||
if ((i+1) % 16 == 0)
|
||||
out << "\n"; // 换行
|
||||
}
|
||||
out << "\n"; // 换行
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,381 @@
|
||||
/*****************************************************************************
|
||||
* file Inc/common.h
|
||||
* author YuLiang
|
||||
* version 1.0.0
|
||||
* date 10-Jun-2022
|
||||
* brief This file provides all the headers of common function.
|
||||
******************************************************************************
|
||||
* Attention
|
||||
*
|
||||
* <h2><center>© COPYRIGHT(c) 2022 LandPower</center></h2>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification,
|
||||
* are permitted provided that the following conditions are met:
|
||||
* 1. Redistributions of source code must retain the above copyright notice,
|
||||
* this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
* 3. Neither the name of WTOE nor the names of its contributors may be used to
|
||||
* endorse or promote products derived from this software without specific
|
||||
* prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
******************************************************************************/
|
||||
|
||||
#ifndef __COMMON_H__
|
||||
#define __COMMON_H__
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#include <stdint.h>
|
||||
//#include "cmsis_os.h"
|
||||
//#include "task.h"
|
||||
#include <QString>
|
||||
#include <QByteArray>
|
||||
#include <QDebug>
|
||||
|
||||
/* Define --------------------------------------------------------------------*/
|
||||
|
||||
|
||||
typedef signed char int8_t;
|
||||
typedef unsigned char uint8_t;
|
||||
typedef short int16_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef int int32_t;
|
||||
typedef unsigned uint32_t;
|
||||
|
||||
#define TRUE 1
|
||||
#define FALSE 0
|
||||
#define OTHER 2
|
||||
|
||||
/* int16_t无效时的数据. */
|
||||
#define INVALID_DATE_8 0x7F
|
||||
/* uint16_t无效数据.*/
|
||||
#define INVALID_DATA_U8 0xFF
|
||||
/* int16_t无效时的数据. */
|
||||
#define INVALID_DATE_16 0x7FFF
|
||||
/* uint16_t无效数据.*/
|
||||
#define INVALID_DATA_U16 0xFFFF
|
||||
/* int32_t无效时的数据. */
|
||||
#define INVALID_DATE_32 0x7FFFFFFF
|
||||
/* uint32_t无效数据.*/
|
||||
#define INVALID_DATA_U32 0xFFFFFFFF
|
||||
|
||||
/* DAU 工频通道数. */
|
||||
#define DAU_PORT_POWER_CNT 8
|
||||
#define DAU_PORT_DEFECT_MAX 4
|
||||
#define DAU_PORT_FAULT_MAX 4
|
||||
|
||||
/* ADC 通道数. */
|
||||
#define CFG_ADC_CH_CNT 8
|
||||
#define SENSOR_SUM 8
|
||||
/* ADC 校准点. */
|
||||
#define CFG_ADC_ADJ_CNT 5
|
||||
#define ADC_COLLECT_CNT 2000 // ADC 每个通道采样次数.
|
||||
|
||||
/* RS485 传感器数量. */
|
||||
#define SENSOR_SUM 8
|
||||
#define WAVE_SUM 4
|
||||
#define POSITION_SUM 3
|
||||
|
||||
#define USART_BUF_SIZE 1088
|
||||
#define DEBUG_DATA_SIZE 1024
|
||||
#define UPDATE_DATA_SIZE DEBUG_DATA_SIZE
|
||||
|
||||
#define MONITOR_ADCi_NOTIFY_OK 0x101
|
||||
#define MONITOR_ADC_NOTIFY_OK 0x102
|
||||
#define MONITOR_SEN_NOTIFY_OK 0x201
|
||||
|
||||
#define COM_WDG_COM 0x0001
|
||||
#define COM_WDG_ADC 0x0002
|
||||
#define COM_WDG_CLI 0x0004
|
||||
#define COM_WDG_WIR 0x0008
|
||||
#define COM_WDG_DAU 0x0010
|
||||
#define COM_WDG_GPS 0x0020
|
||||
|
||||
#define CSG_CIPHERTEXT_LEN 4
|
||||
#define CSG_PASSWD_LEN 4
|
||||
|
||||
#define BIT00 (0x01)
|
||||
#define BIT01 (0x02)
|
||||
#define BIT02 (0x04)
|
||||
#define BIT03 (0x08)
|
||||
#define BIT04 (0x10)
|
||||
#define BIT05 (0x20)
|
||||
#define BIT06 (0x40)
|
||||
#define BIT07 (0x80)
|
||||
|
||||
#define BIT08 (0x0100)
|
||||
#define BIT09 (0x0200)
|
||||
#define BIT10 (0x0400)
|
||||
#define BIT11 (0x0800)
|
||||
#define BIT12 (0x1000)
|
||||
#define BIT13 (0x2000)
|
||||
#define BIT14 (0x4000)
|
||||
#define BIT15 (0x8000)
|
||||
|
||||
#define BIT16 (0x00010000)
|
||||
#define BIT17 (0x00020000)
|
||||
#define BIT18 (0x00040000)
|
||||
#define BIT19 (0x00080000)
|
||||
#define BIT20 (0x00100000)
|
||||
#define BIT21 (0x00200000)
|
||||
#define BIT22 (0x00400000)
|
||||
#define BIT23 (0x00800000)
|
||||
|
||||
#define BIT24 (0x01000000)
|
||||
#define BIT25 (0x02000000)
|
||||
#define BIT26 (0x04000000)
|
||||
#define BIT27 (0x08000000)
|
||||
#define BIT28 (0x10000000)
|
||||
#define BIT29 (0x20000000)
|
||||
#define BIT30 (0x40000000)
|
||||
#define BIT31 (0x80000000)
|
||||
|
||||
#define DEV_CAPABILITY_LEN 16
|
||||
#define DEV_CAPABILITY_BIT_LEN 128
|
||||
#define DEV_PASSWORD_LEN 16
|
||||
#define DEV_COMPILE_TIME_LEN 32
|
||||
#define DEV_VERSION_STR_LEN 32
|
||||
#define DEV_NAME_LEN 128
|
||||
#define DEV_RESET_INFO_NUM 10
|
||||
#define DEV_APN_LEN 16
|
||||
#define DEV_APN_LEN_LONG 64
|
||||
|
||||
#define DEV_CONFIG_SIZE 1024
|
||||
#define DEV_RECORD_SIZE 512
|
||||
|
||||
|
||||
/* Exported types ------------------------------------------------------------*/
|
||||
/* debug模块号. */
|
||||
typedef enum
|
||||
{
|
||||
DBG_M_ADC = 0,
|
||||
DBG_M_4G,
|
||||
DBG_M_RS485_SEN,
|
||||
DBG_M_RS485_DEBUG,
|
||||
DBG_M_DAU,
|
||||
DBG_M_DAU_TXRX,
|
||||
DBG_M_GPS,
|
||||
DBG_M_COUNT
|
||||
} DBG_MODULE_E;
|
||||
|
||||
/* debug命令字. */
|
||||
typedef enum
|
||||
{
|
||||
DBG_CMD_ON = 0,
|
||||
DBG_CMD_OFF,
|
||||
DBG_CMD_OFF_ALL,
|
||||
} DBG_CMD_E;
|
||||
|
||||
/* 公共监控任务标志. */
|
||||
typedef enum
|
||||
{
|
||||
COM_SYS_SAVE_CONFIG = 0,
|
||||
COM_SYS_SAVE_RECORD,
|
||||
COM_SYS_SAVE_INFO,
|
||||
COM_SYS_RESET,
|
||||
COM_SYS_SHUTDOWN,
|
||||
} COM_SYS_FLAG_E;
|
||||
|
||||
/* 命令类型. */
|
||||
enum DEBUG_CMD_TYPE
|
||||
{
|
||||
DEBUG_CT_REQUEST = 1,
|
||||
DEBUG_CT_REPLY = 2,
|
||||
DEBUG_CT_PRV_REQUEST = 121,
|
||||
DEBUG_CT_PRV_REPLY = 122,
|
||||
};
|
||||
|
||||
/* 共有命令字. */
|
||||
enum DEBUG_CMD
|
||||
{
|
||||
DEBUG_C_CONTACT = 1,
|
||||
DEBUG_C_DEV_INFO_SET = 2,
|
||||
DEBUG_C_RESET = 3,
|
||||
DEBUG_C_DEFAULT = 4,
|
||||
DEBUG_C_UPDATE_APP = 5,
|
||||
DEBUG_C_UPDATE_IAP = 6,
|
||||
DEBUG_C_DEV_CONFIG = 7,
|
||||
DEBUG_C_DEV_CONFIG_SET = 8,
|
||||
DEBUG_C_UPDATE_APP_RT = 9,
|
||||
DEBUG_C_KEEPALIVE = 10,
|
||||
DEBUG_C_TIME = 11
|
||||
};
|
||||
|
||||
/* 私有命令字. */
|
||||
enum DEBUG_CM_CMD
|
||||
{
|
||||
DEBUG_PRV_REALDATA = 1,
|
||||
DEBUG_PRV_POWER = 2,
|
||||
DEBUG_PRV_DEFECT = 3,
|
||||
DEBUG_PRV_REALDATA_FUALT = 4,
|
||||
DEBUG_PRV_POWER_FAULT = 5,
|
||||
DEBUG_PRV_FAULT = 6,
|
||||
DEBUG_PRV_ADJ_INFO = 7,
|
||||
DEBUG_PRV_ADJ_INFO_SET = 8,
|
||||
DEBUG_PRV_ADJ_AUTO = 9,
|
||||
DEBUG_PRV_DEV_STATE = 10,
|
||||
DEBUG_PRV_WAVE_COL = 11,
|
||||
DEBUG_PRV_WAVE_CAL = 12,
|
||||
DEBUG_PRV_WAVE_MAX = 13,
|
||||
DEBUG_PRV_LOG = 14,
|
||||
DEBUG_PRV_HISTORY_DATA = 15,
|
||||
DEBUG_PRV_ADJ_MANUAL = 16,
|
||||
DEBUG_PRV_CSG_CONFIG = 17,
|
||||
DEBUG_PRV_CSG_CONFIG_SET = 18,
|
||||
DEBUG_PRV_POSITION_WAVE = 19,
|
||||
DEBUG_PRV_POSITION = 20
|
||||
};
|
||||
|
||||
/* . */
|
||||
typedef enum
|
||||
{
|
||||
ADC_ENERGY_AUTO = 0,
|
||||
ADC_ENERGY_NORMAL,
|
||||
ADC_ENERGY_SLEEP,
|
||||
ADC_ENERGY_SLEEP_FORCE,
|
||||
ADC_ENERGY_CNT
|
||||
} ADC_ENERGY_E;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint16_t len;
|
||||
uint8_t dev_type_m;
|
||||
uint8_t dev_type_s;
|
||||
uint32_t dev_id;
|
||||
uint8_t cmd_type;
|
||||
uint8_t cmd;
|
||||
uint16_t pkt_id;
|
||||
uint8_t reserve[8];
|
||||
} proto_head_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint32_t index;
|
||||
uint32_t len;
|
||||
} mul_head_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* 设备信息. 36byte */
|
||||
uint8_t typeM;
|
||||
uint8_t typeS;
|
||||
uint8_t mac[6];
|
||||
uint32_t id;
|
||||
uint8_t ip[4];
|
||||
uint8_t ipMask[4];
|
||||
uint8_t ipGw[4];
|
||||
uint8_t serverIp[4];
|
||||
uint8_t wirelessServerIp[4];
|
||||
uint16_t serverPort;
|
||||
uint16_t wirelessServerPort;
|
||||
/* 版本信息. 224byte */
|
||||
uint8_t bootVersion[DEV_VERSION_STR_LEN];
|
||||
uint8_t bootCompile_time[DEV_COMPILE_TIME_LEN];
|
||||
uint8_t imgVersion[DEV_VERSION_STR_LEN];
|
||||
uint8_t imgCompile_time[DEV_VERSION_STR_LEN];
|
||||
uint8_t hardwareVersion[DEV_VERSION_STR_LEN];
|
||||
uint8_t fpgaVersion[DEV_COMPILE_TIME_LEN];
|
||||
uint8_t factoryTime[DEV_COMPILE_TIME_LEN];
|
||||
/* 设备其他信息. 128byte */
|
||||
uint8_t name[DEV_NAME_LEN];
|
||||
uint8_t csgId[8];
|
||||
uint16_t csgVersion;
|
||||
uint8_t csgCard[6];
|
||||
} devInfo;
|
||||
|
||||
/* RS485 调试通讯协议配置信息. */
|
||||
typedef struct
|
||||
{
|
||||
/* 设备配置. 12byte */
|
||||
uint16_t flag;
|
||||
uint8_t energyMode;
|
||||
uint8_t isVoltageCol;
|
||||
uint8_t sensor_id[SENSOR_SUM];
|
||||
uint16_t collectInterval;
|
||||
uint16_t waveInterval;
|
||||
uint16_t collectThreshold;
|
||||
uint16_t waveThreshold;
|
||||
uint8_t mainCable;
|
||||
uint8_t normalSleep;
|
||||
uint8_t isTempCol;
|
||||
uint8_t isWaveCol;
|
||||
uint8_t APN[DEV_APN_LEN];
|
||||
uint8_t APN_long[DEV_APN_LEN_LONG];
|
||||
} devConfig;
|
||||
|
||||
/* 南网配置信息. */
|
||||
typedef struct
|
||||
{
|
||||
uint8_t passwd[CSG_PASSWD_LEN];
|
||||
uint8_t beatInterval;
|
||||
uint8_t resetTime[3];
|
||||
uint16_t collectInterval;
|
||||
uint16_t sleepTime;
|
||||
uint16_t onlineTime;
|
||||
uint8_t reserve[2];
|
||||
uint8_t ciphertext[CSG_CIPHERTEXT_LEN]; // 实时数据认证密文.
|
||||
} csgConfig_t;
|
||||
|
||||
/* 高频校准信息. */
|
||||
typedef struct
|
||||
{
|
||||
/* 高频校准. 4 */
|
||||
uint16_t param;
|
||||
uint8_t reserve[2];
|
||||
} waveParam_t;
|
||||
|
||||
|
||||
|
||||
/* Exported macro ------------------------------------------------------------*/
|
||||
|
||||
/* dev_config flag 类型号. */
|
||||
enum DevConfigFlag
|
||||
{
|
||||
DEV_FLAG_CLI = 0, // 是否开启命令行模式.
|
||||
DEV_FLAG_ADJ, // 是否开启校准模式.
|
||||
DEV_FLAG_FACTORY // 工厂持续采样模式.
|
||||
};
|
||||
|
||||
/* bitmap操作. */
|
||||
#define MONITOR_BITMAP_SET(t, b) ((t) |= 1 << (b))
|
||||
#define MONITOR_BITMAP_RESET(t, b) ((t) &= ~(1 << (b)))
|
||||
#define IS_MONITOR_BIT_SET(t, b) ((t) & (1 << b))
|
||||
|
||||
|
||||
//QByteArray data
|
||||
#define HexPrint(func, packet, len) \
|
||||
do{\
|
||||
QByteArray data((const char *)packet, len); \
|
||||
QString hexString; \
|
||||
qDebug() << func << ":\n"; \
|
||||
for (int i = 0; i < data.size(); i++) { \
|
||||
hexString += QString("%1 ").arg((quint8)data.at(i), 2, 16, QChar('0')); \
|
||||
} \
|
||||
qDebug() << hexString; \
|
||||
}while (0);
|
||||
|
||||
|
||||
/* Extern global variables ---------------------------------------------------*/
|
||||
|
||||
/* Extern functions ----------------------------------------------------------*/
|
||||
extern uint32_t crc32_update(uint32_t crc, char* buf, uint32_t len);
|
||||
extern void crc32_table_init(void);
|
||||
extern uint32_t crc32(void const *buf, uint32_t byte_count);
|
||||
extern uint32_t crc32_update(uint32_t crc, char* buf, uint32_t len);
|
||||
extern uint16_t crc16(uint8_t *data, uint16_t size);
|
||||
int32_t stringToChar(QString str, char *buf, uint32_t len);
|
||||
void printHexArray(const char *msg, const char *array, int length);
|
||||
#endif
|
||||
/******************* (C) COPYRIGHT LandPower ***** END OF FILE ****************/
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,11 @@
|
||||
#include "widget.h"
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
Widget w;
|
||||
w.show();
|
||||
|
||||
return a.exec();
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,131 @@
|
||||
#ifndef WIDGET_H
|
||||
#define WIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QSerialPort>
|
||||
#include <QSettings>
|
||||
#include <stdint.h>
|
||||
#include "common.h"
|
||||
|
||||
namespace Ui { //新增的
|
||||
class form;
|
||||
}
|
||||
|
||||
typedef struct _ST_DEV_INFO
|
||||
{
|
||||
|
||||
} stDevInfo;
|
||||
|
||||
#define USART_BUF_SIZE 1088
|
||||
class Widget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
Widget(QWidget *parent = nullptr);
|
||||
~Widget();
|
||||
private slots:
|
||||
void on_btnConn_clicked();
|
||||
|
||||
void on_btnReset_clicked();
|
||||
|
||||
void on_btnRefresh_clicked();
|
||||
|
||||
void on_configButton_clicked();
|
||||
|
||||
void on_defaultButton_clicked();
|
||||
|
||||
void on_fileButton_clicked();
|
||||
|
||||
void on_updateButton_clicked();
|
||||
|
||||
void on_configSetButton_clicked();
|
||||
|
||||
void on_configGetButton_clicked();
|
||||
|
||||
void on_csgConfigGetButton_clicked();
|
||||
|
||||
void on_csgConfigSetButton_clicked();
|
||||
|
||||
void on_dataRefreshButton_clicked();
|
||||
|
||||
void on_dataRefreshAutoButton_clicked();
|
||||
|
||||
void on_stateRefreshButton_clicked();
|
||||
|
||||
void on_freRefreshButton_clicked();
|
||||
|
||||
void on_waveColButton_clicked();
|
||||
|
||||
void on_waveRefreshButton_clicked();
|
||||
|
||||
void on_waveCalButton_clicked();
|
||||
|
||||
void on_historyDataButton_clicked();
|
||||
|
||||
void on_stateLogButton_clicked();
|
||||
|
||||
private:
|
||||
|
||||
QString toHexadecimal(const QByteArray &byteArray);
|
||||
int searchUsablePort();
|
||||
void serialErrHandle(QSerialPort::SerialPortError error);
|
||||
void serialDisconnect();
|
||||
int initSerial();
|
||||
int deinitSerial();
|
||||
int readData();
|
||||
int writeData(char *buf, int len);
|
||||
int protocol();
|
||||
int procHandle();
|
||||
int protoHeaderInit(proto_head_t * header, uint16_t len, uint32_t id, uint8_t cmd_type, uint8_t cmd);
|
||||
|
||||
int protoDevInfoGet(char *pdata, int len);
|
||||
void buttonEnable(bool flag);
|
||||
void uiDevInfoRefresh();
|
||||
void uiDevConfigRefresh();
|
||||
int paraseProtocols(char *data);
|
||||
int snedMsgDeviceInfoGet();
|
||||
int sendMsgDeviceInfoSet();
|
||||
int sendMsgDeviceReset();
|
||||
int sendMsgDeviceCfgDefault();
|
||||
int sendMsgDeviceConfigSet();
|
||||
int sendMsgDeviceConfigGet();
|
||||
int sendMsgDeviceCsgConfigGet();
|
||||
int sendMsgDeviceCsgConfigSet();
|
||||
int sendMsgDeviceRealDataGet();
|
||||
int sendMsgDeviceUpdate(int fileType);
|
||||
|
||||
int sendMsgWaveCol();
|
||||
|
||||
int senMsgWaveCal();
|
||||
|
||||
int replyUpdate(char *data, int fileType);
|
||||
|
||||
Ui::form *ui; //新增的
|
||||
QSerialPort *serialPort;
|
||||
QSettings *settings;
|
||||
QString filePath;
|
||||
//QThread *newTask;
|
||||
//Protocol *usartProtocol;
|
||||
|
||||
char rxbuf[USART_BUF_SIZE];
|
||||
int rxbufLen;
|
||||
|
||||
devInfo clientDevInfo;
|
||||
devConfig clientDevConfig;
|
||||
csgConfig_t csgConfig;
|
||||
int isConnected; // serial connect state
|
||||
int64_t upFileSize;
|
||||
uint32_t upFileRecvSize;
|
||||
uint32_t upPackIndex;
|
||||
int isDataRefresh;
|
||||
int16_t powerFre[CFG_ADC_CH_CNT][ADC_COLLECT_CNT];
|
||||
uint32_t freIndex;
|
||||
uint16_t waveParam;
|
||||
uint8_t is_log_up;
|
||||
uint32_t logIndex;
|
||||
uint8_t is_data_up;
|
||||
uint32_t dataIndex;
|
||||
};
|
||||
|
||||
#endif // WIDGET_H
|
@ -0,0 +1,21 @@
|
||||
QMAKE_CXX.INCDIRS = \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0/include \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0/include-fixed \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/i686-w64-mingw32/include \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/i686-w64-mingw32/include/c++ \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/i686-w64-mingw32/include/c++/i686-w64-mingw32 \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/i686-w64-mingw32/include/c++/backward
|
||||
QMAKE_CXX.LIBDIRS = \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0 \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/lib/gcc \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/i686-w64-mingw32/lib \
|
||||
D:/Qt/Qt5.11.3/Tools/mingw530_32/lib
|
||||
QMAKE_CXX.QT_COMPILER_STDCXX = 199711L
|
||||
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 5
|
||||
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 3
|
||||
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
|
||||
QMAKE_CXX.COMPILER_MACROS = \
|
||||
QT_COMPILER_STDCXX \
|
||||
QMAKE_GCC_MAJOR_VERSION \
|
||||
QMAKE_GCC_MINOR_VERSION \
|
||||
QMAKE_GCC_PATCH_VERSION
|
@ -0,0 +1,463 @@
|
||||
#############################################################################
|
||||
# Makefile for building: CableTool
|
||||
# Generated by qmake (3.1) (Qt 5.11.3)
|
||||
# Project: ..\CableTool\CableTool.pro
|
||||
# Template: app
|
||||
# Command: D:\Qt\Qt5.11.3\5.11.3\mingw53_32\bin\qmake.exe -o Makefile ..\CableTool\CableTool.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug"
|
||||
#############################################################################
|
||||
|
||||
MAKEFILE = Makefile
|
||||
|
||||
first: debug
|
||||
install: debug-install
|
||||
uninstall: debug-uninstall
|
||||
QMAKE = D:\Qt\Qt5.11.3\5.11.3\mingw53_32\bin\qmake.exe
|
||||
DEL_FILE = del
|
||||
CHK_DIR_EXISTS= if not exist
|
||||
MKDIR = mkdir
|
||||
COPY = copy /y
|
||||
COPY_FILE = copy /y
|
||||
COPY_DIR = xcopy /s /q /y /i
|
||||
INSTALL_FILE = copy /y
|
||||
INSTALL_PROGRAM = copy /y
|
||||
INSTALL_DIR = xcopy /s /q /y /i
|
||||
QINSTALL = D:\Qt\Qt5.11.3\5.11.3\mingw53_32\bin\qmake.exe -install qinstall
|
||||
QINSTALL_PROGRAM = D:\Qt\Qt5.11.3\5.11.3\mingw53_32\bin\qmake.exe -install qinstall -exe
|
||||
DEL_FILE = del
|
||||
SYMLINK = $(QMAKE) -install ln -f -s
|
||||
DEL_DIR = rmdir
|
||||
MOVE = move
|
||||
SUBTARGETS = \
|
||||
debug \
|
||||
release
|
||||
|
||||
|
||||
debug: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Debug
|
||||
debug-make_first: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Debug
|
||||
debug-all: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Debug all
|
||||
debug-clean: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Debug clean
|
||||
debug-distclean: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Debug distclean
|
||||
debug-install: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Debug install
|
||||
debug-uninstall: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Debug uninstall
|
||||
release: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Release
|
||||
release-make_first: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Release
|
||||
release-all: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Release all
|
||||
release-clean: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Release clean
|
||||
release-distclean: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Release distclean
|
||||
release-install: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Release install
|
||||
release-uninstall: FORCE
|
||||
$(MAKE) -f $(MAKEFILE).Release uninstall
|
||||
|
||||
Makefile: ../CableTool/CableTool.pro ../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/win32-g++/qmake.conf ../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/spec_pre.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/qdevice.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/device_config.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/sanitize.conf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/gcc-base.conf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/g++-base.conf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/angle.conf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/windows-vulkan.conf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/g++-win32.conf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/qconfig.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3danimation.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3danimation_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dcore.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dcore_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dextras.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dextras_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dinput.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dinput_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dlogic.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dlogic_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquick.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquick_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickanimation.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickextras.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickextras_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickinput.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickinput_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickrender.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickrender_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickscene2d.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3drender.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3drender_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_accessibility_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axbase.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axbase_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axcontainer.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axcontainer_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axserver.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axserver_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_bluetooth.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_bluetooth_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_bootstrap_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_charts.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_charts_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_concurrent.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_concurrent_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_core.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_core_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_datavisualization.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_datavisualization_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_dbus.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_dbus_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_designer.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_designer_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_designercomponents_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_edid_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_egl_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_fb_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_gamepad.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_gamepad_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_gui.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_gui_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_help.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_help_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_location.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_location_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_multimedia.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_multimedia_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_multimediawidgets.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_network.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_network_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_networkauth.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_networkauth_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_nfc.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_nfc_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_opengl.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_opengl_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_openglextensions.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_openglextensions_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_packetprotocol_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_positioning.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_positioning_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_positioningquick.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_positioningquick_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_printsupport.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_printsupport_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_purchasing.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_purchasing_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qml.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qml_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qmldebug_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qmldevtools_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qmltest.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qmltest_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quick.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quick_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickcontrols2.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickparticles_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickwidgets.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickwidgets_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_remoteobjects.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_remoteobjects_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_repparser.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_repparser_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_script.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_script_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_scripttools.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_scripttools_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_scxml.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_scxml_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_sensors.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_sensors_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_serialbus.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_serialbus_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_serialport.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_serialport_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_sql.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_sql_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_svg.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_svg_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_testlib.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_testlib_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_texttospeech.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_texttospeech_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_theme_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_uiplugin.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_uitools.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_uitools_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_webchannel.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_webchannel_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_websockets.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_websockets_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_widgets.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_widgets_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_windowsuiautomation_support_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_winextras.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_winextras_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_xml.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_xml_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_xmlpatterns.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_xmlpatterns_private.pri \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qt_functions.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qt_config.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/win32-g++/qmake.conf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/spec_post.prf \
|
||||
.qmake.stash \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/exclusive_builds.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/toolchain.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/default_pre.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/win32/default_pre.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/resolve_config.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/exclusive_builds_post.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/default_post.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qml_debug.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/precompile_header.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/warn_on.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qt.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/resources.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/moc.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/win32/opengl.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/uic.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qmake_use.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/file_copies.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/win32/windows.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/testcase_targets.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/exceptions.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/yacc.prf \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/lex.prf \
|
||||
../CableTool/CableTool.pro \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/qtmaind.prl \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/Qt5Widgets.prl \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/Qt5Gui.prl \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/Qt5SerialPort.prl \
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/Qt5Core.prl
|
||||
$(QMAKE) -o Makefile ..\CableTool\CableTool.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug"
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/spec_pre.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/qdevice.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/device_config.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/sanitize.conf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/gcc-base.conf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/g++-base.conf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/angle.conf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/windows-vulkan.conf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/common/g++-win32.conf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/qconfig.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3danimation.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3danimation_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dcore.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dcore_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dextras.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dextras_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dinput.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dinput_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dlogic.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dlogic_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquick.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquick_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickanimation.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickanimation_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickextras.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickextras_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickinput.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickinput_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickrender.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickrender_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickscene2d.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3dquickscene2d_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3drender.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_3drender_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_accessibility_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axbase.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axbase_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axcontainer.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axcontainer_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axserver.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_axserver_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_bluetooth.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_bluetooth_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_bootstrap_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_charts.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_charts_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_concurrent.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_concurrent_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_core.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_core_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_datavisualization.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_datavisualization_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_dbus.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_dbus_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_designer.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_designer_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_designercomponents_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_devicediscovery_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_edid_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_egl_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_fb_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_fontdatabase_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_gamepad.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_gamepad_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_gui.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_gui_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_help.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_help_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_location.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_location_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_multimedia.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_multimedia_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_multimediawidgets.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_multimediawidgets_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_network.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_network_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_networkauth.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_networkauth_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_nfc.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_nfc_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_opengl.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_opengl_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_openglextensions.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_openglextensions_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_packetprotocol_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_platformcompositor_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_positioning.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_positioning_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_positioningquick.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_positioningquick_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_printsupport.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_printsupport_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_purchasing.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_purchasing_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qml.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qml_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qmldebug_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qmldevtools_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qmltest.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qmltest_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quick.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quick_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickcontrols2.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickcontrols2_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickparticles_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quicktemplates2_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickwidgets.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_quickwidgets_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_remoteobjects.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_remoteobjects_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_repparser.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_repparser_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_script.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_script_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_scripttools.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_scripttools_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_scxml.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_scxml_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_sensors.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_sensors_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_serialbus.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_serialbus_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_serialport.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_serialport_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_sql.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_sql_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_svg.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_svg_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_testlib.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_testlib_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_texttospeech.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_texttospeech_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_theme_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_uiplugin.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_uitools.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_uitools_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_webchannel.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_webchannel_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_websockets.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_websockets_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_widgets.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_widgets_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_windowsuiautomation_support_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_winextras.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_winextras_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_xml.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_xml_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_xmlpatterns.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/modules/qt_lib_xmlpatterns_private.pri:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qt_functions.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qt_config.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/win32-g++/qmake.conf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/spec_post.prf:
|
||||
.qmake.stash:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/exclusive_builds.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/toolchain.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/default_pre.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/win32/default_pre.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/resolve_config.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/exclusive_builds_post.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/default_post.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qml_debug.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/precompile_header.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/warn_on.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qt.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/resources.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/moc.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/win32/opengl.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/uic.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/qmake_use.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/file_copies.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/win32/windows.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/testcase_targets.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/exceptions.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/yacc.prf:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/mkspecs/features/lex.prf:
|
||||
../CableTool/CableTool.pro:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/qtmaind.prl:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/Qt5Widgets.prl:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/Qt5Gui.prl:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/Qt5SerialPort.prl:
|
||||
../../../../Qt/Qt5.11.3/5.11.3/mingw53_32/lib/Qt5Core.prl:
|
||||
qmake: FORCE
|
||||
@$(QMAKE) -o Makefile ..\CableTool\CableTool.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug"
|
||||
|
||||
qmake_all: FORCE
|
||||
|
||||
make_first: debug-make_first release-make_first FORCE
|
||||
all: debug-all release-all FORCE
|
||||
clean: debug-clean release-clean FORCE
|
||||
distclean: debug-distclean release-distclean FORCE
|
||||
-$(DEL_FILE) Makefile
|
||||
-$(DEL_FILE) .qmake.stash
|
||||
|
||||
debug-mocclean:
|
||||
$(MAKE) -f $(MAKEFILE).Debug mocclean
|
||||
release-mocclean:
|
||||
$(MAKE) -f $(MAKEFILE).Release mocclean
|
||||
mocclean: debug-mocclean release-mocclean
|
||||
|
||||
debug-mocables:
|
||||
$(MAKE) -f $(MAKEFILE).Debug mocables
|
||||
release-mocables:
|
||||
$(MAKE) -f $(MAKEFILE).Release mocables
|
||||
mocables: debug-mocables release-mocables
|
||||
|
||||
check: first
|
||||
|
||||
benchmark: first
|
||||
FORCE:
|
||||
|
||||
$(MAKEFILE).Debug: Makefile
|
||||
$(MAKEFILE).Release: Makefile
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
[General]
|
||||
updateFile=D:/work/project/CablePosition/tools/V300.1.1.11/V300.1.1.11/CM_IAP_1_1_129_9.bin
|
||||
updateFileType=1
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,278 @@
|
||||
#define __DBL_MIN_EXP__ (-1021)
|
||||
#define __cpp_attributes 200809
|
||||
#define __pentiumpro__ 1
|
||||
#define __UINT_LEAST16_MAX__ 0xffff
|
||||
#define __ATOMIC_ACQUIRE 2
|
||||
#define __FLT_MIN__ 1.17549435082228750797e-38F
|
||||
#define __GCC_IEC_559_COMPLEX 2
|
||||
#define __UINT_LEAST8_TYPE__ unsigned char
|
||||
#define __SIZEOF_FLOAT80__ 12
|
||||
#define _WIN32 1
|
||||
#define __INTMAX_C(c) c ## LL
|
||||
#define __CHAR_BIT__ 8
|
||||
#define __UINT8_MAX__ 0xff
|
||||
#define __WINT_MAX__ 0xffff
|
||||
#define __cpp_static_assert 200410
|
||||
#define __ORDER_LITTLE_ENDIAN__ 1234
|
||||
#define __SIZE_MAX__ 0xffffffffU
|
||||
#define __WCHAR_MAX__ 0xffff
|
||||
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
|
||||
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1
|
||||
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1
|
||||
#define __DBL_DENORM_MIN__ double(4.94065645841246544177e-324L)
|
||||
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1
|
||||
#define __GCC_ATOMIC_CHAR_LOCK_FREE 2
|
||||
#define __GCC_IEC_559 2
|
||||
#define __FLT_EVAL_METHOD__ 2
|
||||
#define __cpp_binary_literals 201304
|
||||
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2
|
||||
#define __cpp_variadic_templates 200704
|
||||
#define __UINT_FAST64_MAX__ 0xffffffffffffffffULL
|
||||
#define __SIG_ATOMIC_TYPE__ int
|
||||
#define __DBL_MIN_10_EXP__ (-307)
|
||||
#define __FINITE_MATH_ONLY__ 0
|
||||
#define __GNUC_PATCHLEVEL__ 0
|
||||
#define __UINT_FAST8_MAX__ 0xff
|
||||
#define __has_include(STR) __has_include__(STR)
|
||||
#define _stdcall __attribute__((__stdcall__))
|
||||
#define __DEC64_MAX_EXP__ 385
|
||||
#define __INT8_C(c) c
|
||||
#define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL
|
||||
#define __SHRT_MAX__ 0x7fff
|
||||
#define __LDBL_MAX__ 1.18973149535723176502e+4932L
|
||||
#define __UINT_LEAST8_MAX__ 0xff
|
||||
#define __GCC_ATOMIC_BOOL_LOCK_FREE 2
|
||||
#define __UINTMAX_TYPE__ long long unsigned int
|
||||
#define __DEC32_EPSILON__ 1E-6DF
|
||||
#define __UINT32_MAX__ 0xffffffffU
|
||||
#define __GXX_EXPERIMENTAL_CXX0X__ 1
|
||||
#define __LDBL_MAX_EXP__ 16384
|
||||
#define __WINT_MIN__ 0
|
||||
#define __SCHAR_MAX__ 0x7f
|
||||
#define __WCHAR_MIN__ 0
|
||||
#define __INT64_C(c) c ## LL
|
||||
#define __DBL_DIG__ 15
|
||||
#define __GCC_ATOMIC_POINTER_LOCK_FREE 2
|
||||
#define __SIZEOF_INT__ 4
|
||||
#define __SIZEOF_POINTER__ 4
|
||||
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2
|
||||
#define __USER_LABEL_PREFIX__ _
|
||||
#define __STDC_HOSTED__ 1
|
||||
#define __WIN32 1
|
||||
#define __LDBL_HAS_INFINITY__ 1
|
||||
#define __FLT_EPSILON__ 1.19209289550781250000e-7F
|
||||
#define __GXX_WEAK__ 1
|
||||
#define __LDBL_MIN__ 3.36210314311209350626e-4932L
|
||||
#define __DEC32_MAX__ 9.999999E96DF
|
||||
#define __MINGW32__ 1
|
||||
#define __INT32_MAX__ 0x7fffffff
|
||||
#define __SIZEOF_LONG__ 4
|
||||
#define __UINT16_C(c) c
|
||||
#define __DECIMAL_DIG__ 21
|
||||
#define __has_include_next(STR) __has_include_next__(STR)
|
||||
#define __LDBL_HAS_QUIET_NAN__ 1
|
||||
#define _REENTRANT 1
|
||||
#define __GNUC__ 5
|
||||
#define _cdecl __attribute__((__cdecl__))
|
||||
#define __GXX_RTTI 1
|
||||
#define __cpp_delegating_constructors 200604
|
||||
#define __FLT_HAS_DENORM__ 1
|
||||
#define __SIZEOF_LONG_DOUBLE__ 12
|
||||
#define __BIGGEST_ALIGNMENT__ 16
|
||||
#define __STDC_UTF_16__ 1
|
||||
#define __i686 1
|
||||
#define __DBL_MAX__ double(1.79769313486231570815e+308L)
|
||||
#define _thiscall __attribute__((__thiscall__))
|
||||
#define __cpp_raw_strings 200710
|
||||
#define __INT_FAST32_MAX__ 0x7fffffff
|
||||
#define __WINNT 1
|
||||
#define __DBL_HAS_INFINITY__ 1
|
||||
#define __INT64_MAX__ 0x7fffffffffffffffLL
|
||||
#define __WINNT__ 1
|
||||
#define __DEC32_MIN_EXP__ (-94)
|
||||
#define __INT_FAST16_TYPE__ short int
|
||||
#define _fastcall __attribute__((__fastcall__))
|
||||
#define __LDBL_HAS_DENORM__ 1
|
||||
#define __cplusplus 201103L
|
||||
#define __cpp_ref_qualifiers 200710
|
||||
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
|
||||
#define __INT_LEAST32_MAX__ 0x7fffffff
|
||||
#define __DEC32_MIN__ 1E-95DF
|
||||
#define __DEPRECATED 1
|
||||
#define __DBL_MAX_EXP__ 1024
|
||||
#define __DEC128_EPSILON__ 1E-33DL
|
||||
#define __ATOMIC_HLE_RELEASE 131072
|
||||
#define __WIN32__ 1
|
||||
#define __PTRDIFF_MAX__ 0x7fffffff
|
||||
#define __ATOMIC_HLE_ACQUIRE 65536
|
||||
#define __GNUG__ 5
|
||||
#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL
|
||||
#define __SIZEOF_SIZE_T__ 4
|
||||
#define __cpp_rvalue_reference 200610
|
||||
#define __cpp_nsdmi 200809
|
||||
#define __SIZEOF_WINT_T__ 2
|
||||
#define __cpp_initializer_lists 200806
|
||||
#define __GCC_HAVE_DWARF2_CFI_ASM 1
|
||||
#define __GXX_ABI_VERSION 1009
|
||||
#define __FLT_MIN_EXP__ (-125)
|
||||
#define __i686__ 1
|
||||
#define __cpp_lambdas 200907
|
||||
#define __INT_FAST64_TYPE__ long long int
|
||||
#define __DBL_MIN__ double(2.22507385850720138309e-308L)
|
||||
#define __FLT_MIN_10_EXP__ (-37)
|
||||
#define __DECIMAL_BID_FORMAT__ 1
|
||||
#define __GXX_TYPEINFO_EQUALITY_INLINE 0
|
||||
#define __DEC128_MIN__ 1E-6143DL
|
||||
#define __REGISTER_PREFIX__
|
||||
#define __UINT16_MAX__ 0xffff
|
||||
#define __DBL_HAS_DENORM__ 1
|
||||
#define __cdecl __attribute__((__cdecl__))
|
||||
#define __UINT8_TYPE__ unsigned char
|
||||
#define __NO_INLINE__ 1
|
||||
#define __i386 1
|
||||
#define __FLT_MANT_DIG__ 24
|
||||
#define __VERSION__ "5.3.0"
|
||||
#define __UINT64_C(c) c ## ULL
|
||||
#define __cpp_unicode_characters 200704
|
||||
#define __GCC_ATOMIC_INT_LOCK_FREE 2
|
||||
#define _X86_ 1
|
||||
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||
#define __INT32_C(c) c
|
||||
#define __DEC64_EPSILON__ 1E-15DD
|
||||
#define __ORDER_PDP_ENDIAN__ 3412
|
||||
#define __DEC128_MIN_EXP__ (-6142)
|
||||
#define __code_model_32__ 1
|
||||
#define __INT_FAST32_TYPE__ int
|
||||
#define __UINT_LEAST16_TYPE__ short unsigned int
|
||||
#define __INT16_MAX__ 0x7fff
|
||||
#define __i386__ 1
|
||||
#define __cpp_rtti 199711
|
||||
#define __SIZE_TYPE__ unsigned int
|
||||
#define __UINT64_MAX__ 0xffffffffffffffffULL
|
||||
#define __INT8_TYPE__ signed char
|
||||
#define __FLT_RADIX__ 2
|
||||
#define __INT_LEAST16_TYPE__ short int
|
||||
#define __LDBL_EPSILON__ 1.08420217248550443401e-19L
|
||||
#define __UINTMAX_C(c) c ## ULL
|
||||
#define __SIG_ATOMIC_MAX__ 0x7fffffff
|
||||
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2
|
||||
#define __SIZEOF_PTRDIFF_T__ 4
|
||||
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
|
||||
#define __pentiumpro 1
|
||||
#define __MSVCRT__ 1
|
||||
#define __INT_FAST16_MAX__ 0x7fff
|
||||
#define __UINT_FAST32_MAX__ 0xffffffffU
|
||||
#define __UINT_LEAST64_TYPE__ long long unsigned int
|
||||
#define __FLT_HAS_QUIET_NAN__ 1
|
||||
#define __FLT_MAX_10_EXP__ 38
|
||||
#define __LONG_MAX__ 0x7fffffffL
|
||||
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
|
||||
#define __FLT_HAS_INFINITY__ 1
|
||||
#define __cpp_unicode_literals 200710
|
||||
#define __UINT_FAST16_TYPE__ short unsigned int
|
||||
#define __DEC64_MAX__ 9.999999999999999E384DD
|
||||
#define __CHAR16_TYPE__ short unsigned int
|
||||
#define __PRAGMA_REDEFINE_EXTNAME 1
|
||||
#define __INT_LEAST16_MAX__ 0x7fff
|
||||
#define __DEC64_MANT_DIG__ 16
|
||||
#define __UINT_LEAST32_MAX__ 0xffffffffU
|
||||
#define __GCC_ATOMIC_LONG_LOCK_FREE 2
|
||||
#define __INT_LEAST64_TYPE__ long long int
|
||||
#define __INT16_TYPE__ short int
|
||||
#define __INT_LEAST8_TYPE__ signed char
|
||||
#define __DEC32_MAX_EXP__ 97
|
||||
#define __INT_FAST8_MAX__ 0x7f
|
||||
#define __INTPTR_MAX__ 0x7fffffff
|
||||
#define __GXX_MERGED_TYPEINFO_NAMES 0
|
||||
#define __cpp_range_based_for 200907
|
||||
#define __stdcall __attribute__((__stdcall__))
|
||||
#define __EXCEPTIONS 1
|
||||
#define __LDBL_MANT_DIG__ 64
|
||||
#define __DBL_HAS_QUIET_NAN__ 1
|
||||
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
|
||||
#define __INTPTR_TYPE__ int
|
||||
#define __UINT16_TYPE__ short unsigned int
|
||||
#define __WCHAR_TYPE__ short unsigned int
|
||||
#define __SIZEOF_FLOAT__ 4
|
||||
#define __UINTPTR_MAX__ 0xffffffffU
|
||||
#define __DEC64_MIN_EXP__ (-382)
|
||||
#define __cpp_decltype 200707
|
||||
#define __INT_FAST64_MAX__ 0x7fffffffffffffffLL
|
||||
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
||||
#define __FLT_DIG__ 6
|
||||
#define __UINT_FAST64_TYPE__ long long unsigned int
|
||||
#define __INT_MAX__ 0x7fffffff
|
||||
#define WIN32 1
|
||||
#define __INT64_TYPE__ long long int
|
||||
#define __FLT_MAX_EXP__ 128
|
||||
#define __DBL_MANT_DIG__ 53
|
||||
#define __cpp_inheriting_constructors 200802
|
||||
#define __SIZEOF_FLOAT128__ 16
|
||||
#define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL
|
||||
#define __DEC64_MIN__ 1E-383DD
|
||||
#define __WINT_TYPE__ short unsigned int
|
||||
#define __UINT_LEAST32_TYPE__ unsigned int
|
||||
#define __SIZEOF_SHORT__ 2
|
||||
#define __LDBL_MIN_EXP__ (-16381)
|
||||
#define __INT_LEAST8_MAX__ 0x7f
|
||||
#define __WCHAR_UNSIGNED__ 1
|
||||
#define __LDBL_MAX_10_EXP__ 4932
|
||||
#define __ATOMIC_RELAXED 0
|
||||
#define __DBL_EPSILON__ double(2.22044604925031308085e-16L)
|
||||
#define __thiscall __attribute__((__thiscall__))
|
||||
#define __UINT8_C(c) c
|
||||
#define __INT_LEAST32_TYPE__ int
|
||||
#define __SIZEOF_WCHAR_T__ 2
|
||||
#define __UINT64_TYPE__ long long unsigned int
|
||||
#define __INT_FAST8_TYPE__ signed char
|
||||
#define __fastcall __attribute__((__fastcall__))
|
||||
#define __GNUC_STDC_INLINE__ 1
|
||||
#define __DBL_DECIMAL_DIG__ 17
|
||||
#define __STDC_UTF_32__ 1
|
||||
#define __DEC_EVAL_METHOD__ 2
|
||||
#define __ORDER_BIG_ENDIAN__ 4321
|
||||
#define __cpp_runtime_arrays 198712
|
||||
#define __UINT32_C(c) c ## U
|
||||
#define __INTMAX_MAX__ 0x7fffffffffffffffLL
|
||||
#define __cpp_alias_templates 200704
|
||||
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||
#define WINNT 1
|
||||
#define __FLT_DENORM_MIN__ 1.40129846432481707092e-45F
|
||||
#define __INT8_MAX__ 0x7f
|
||||
#define __UINT_FAST32_TYPE__ unsigned int
|
||||
#define __CHAR32_TYPE__ unsigned int
|
||||
#define __FLT_MAX__ 3.40282346638528859812e+38F
|
||||
#define __cpp_constexpr 200704
|
||||
#define __INT32_TYPE__ int
|
||||
#define __SIZEOF_DOUBLE__ 8
|
||||
#define __cpp_exceptions 199711
|
||||
#define __INTMAX_TYPE__ long long int
|
||||
#define i386 1
|
||||
#define _INTEGRAL_MAX_BITS 64
|
||||
#define __DEC128_MAX_EXP__ 6145
|
||||
#define __ATOMIC_CONSUME 1
|
||||
#define __GNUC_MINOR__ 3
|
||||
#define __UINTMAX_MAX__ 0xffffffffffffffffULL
|
||||
#define __DEC32_MANT_DIG__ 7
|
||||
#define __DBL_MAX_10_EXP__ 308
|
||||
#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L
|
||||
#define __INT16_C(c) c
|
||||
#define __STDC__ 1
|
||||
#define __PTRDIFF_TYPE__ int
|
||||
#define __ATOMIC_SEQ_CST 5
|
||||
#define __UINT32_TYPE__ unsigned int
|
||||
#define __UINTPTR_TYPE__ unsigned int
|
||||
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
|
||||
#define __DEC128_MANT_DIG__ 34
|
||||
#define __LDBL_MIN_10_EXP__ (-4931)
|
||||
#define __SIZEOF_LONG_LONG__ 8
|
||||
#define __cpp_user_defined_literals 200809
|
||||
#define __GCC_ATOMIC_LLONG_LOCK_FREE 2
|
||||
#define __LDBL_DIG__ 18
|
||||
#define __FLT_DECIMAL_DIG__ 9
|
||||
#define __UINT_FAST16_MAX__ 0xffff
|
||||
#define __GCC_ATOMIC_SHORT_LOCK_FREE 2
|
||||
#define __UINT_FAST8_TYPE__ unsigned char
|
||||
#define __ATOMIC_ACQ_REL 4
|
||||
#define __ATOMIC_RELEASE 3
|
||||
#define __declspec(x) __attribute__((x))
|
@ -0,0 +1,207 @@
|
||||
/****************************************************************************
|
||||
** Meta object code from reading C++ file 'widget.h'
|
||||
**
|
||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.11.3)
|
||||
**
|
||||
** WARNING! All changes made in this file will be lost!
|
||||
*****************************************************************************/
|
||||
|
||||
#include "../../CableTool/widget.h"
|
||||
#include <QtCore/qbytearray.h>
|
||||
#include <QtCore/qmetatype.h>
|
||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||
#error "The header file 'widget.h' doesn't include <QObject>."
|
||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
||||
#error "This file was generated using the moc from 5.11.3. It"
|
||||
#error "cannot be used with the include files from this version of Qt."
|
||||
#error "(The moc has changed too much.)"
|
||||
#endif
|
||||
|
||||
QT_BEGIN_MOC_NAMESPACE
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
struct qt_meta_stringdata_Widget_t {
|
||||
QByteArrayData data[22];
|
||||
char stringdata0[532];
|
||||
};
|
||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
||||
qptrdiff(offsetof(qt_meta_stringdata_Widget_t, stringdata0) + ofs \
|
||||
- idx * sizeof(QByteArrayData)) \
|
||||
)
|
||||
static const qt_meta_stringdata_Widget_t qt_meta_stringdata_Widget = {
|
||||
{
|
||||
QT_MOC_LITERAL(0, 0, 6), // "Widget"
|
||||
QT_MOC_LITERAL(1, 7, 18), // "on_btnConn_clicked"
|
||||
QT_MOC_LITERAL(2, 26, 0), // ""
|
||||
QT_MOC_LITERAL(3, 27, 19), // "on_btnReset_clicked"
|
||||
QT_MOC_LITERAL(4, 47, 21), // "on_btnRefresh_clicked"
|
||||
QT_MOC_LITERAL(5, 69, 23), // "on_configButton_clicked"
|
||||
QT_MOC_LITERAL(6, 93, 24), // "on_defaultButton_clicked"
|
||||
QT_MOC_LITERAL(7, 118, 21), // "on_fileButton_clicked"
|
||||
QT_MOC_LITERAL(8, 140, 23), // "on_updateButton_clicked"
|
||||
QT_MOC_LITERAL(9, 164, 26), // "on_configSetButton_clicked"
|
||||
QT_MOC_LITERAL(10, 191, 26), // "on_configGetButton_clicked"
|
||||
QT_MOC_LITERAL(11, 218, 29), // "on_csgConfigGetButton_clicked"
|
||||
QT_MOC_LITERAL(12, 248, 29), // "on_csgConfigSetButton_clicked"
|
||||
QT_MOC_LITERAL(13, 278, 28), // "on_dataRefreshButton_clicked"
|
||||
QT_MOC_LITERAL(14, 307, 32), // "on_dataRefreshAutoButton_clicked"
|
||||
QT_MOC_LITERAL(15, 340, 29), // "on_stateRefreshButton_clicked"
|
||||
QT_MOC_LITERAL(16, 370, 27), // "on_freRefreshButton_clicked"
|
||||
QT_MOC_LITERAL(17, 398, 24), // "on_waveColButton_clicked"
|
||||
QT_MOC_LITERAL(18, 423, 28), // "on_waveRefreshButton_clicked"
|
||||
QT_MOC_LITERAL(19, 452, 24), // "on_waveCalButton_clicked"
|
||||
QT_MOC_LITERAL(20, 477, 28), // "on_historyDataButton_clicked"
|
||||
QT_MOC_LITERAL(21, 506, 25) // "on_stateLogButton_clicked"
|
||||
|
||||
},
|
||||
"Widget\0on_btnConn_clicked\0\0"
|
||||
"on_btnReset_clicked\0on_btnRefresh_clicked\0"
|
||||
"on_configButton_clicked\0"
|
||||
"on_defaultButton_clicked\0on_fileButton_clicked\0"
|
||||
"on_updateButton_clicked\0"
|
||||
"on_configSetButton_clicked\0"
|
||||
"on_configGetButton_clicked\0"
|
||||
"on_csgConfigGetButton_clicked\0"
|
||||
"on_csgConfigSetButton_clicked\0"
|
||||
"on_dataRefreshButton_clicked\0"
|
||||
"on_dataRefreshAutoButton_clicked\0"
|
||||
"on_stateRefreshButton_clicked\0"
|
||||
"on_freRefreshButton_clicked\0"
|
||||
"on_waveColButton_clicked\0"
|
||||
"on_waveRefreshButton_clicked\0"
|
||||
"on_waveCalButton_clicked\0"
|
||||
"on_historyDataButton_clicked\0"
|
||||
"on_stateLogButton_clicked"
|
||||
};
|
||||
#undef QT_MOC_LITERAL
|
||||
|
||||
static const uint qt_meta_data_Widget[] = {
|
||||
|
||||
// content:
|
||||
7, // revision
|
||||
0, // classname
|
||||
0, 0, // classinfo
|
||||
20, 14, // methods
|
||||
0, 0, // properties
|
||||
0, 0, // enums/sets
|
||||
0, 0, // constructors
|
||||
0, // flags
|
||||
0, // signalCount
|
||||
|
||||
// slots: name, argc, parameters, tag, flags
|
||||
1, 0, 114, 2, 0x08 /* Private */,
|
||||
3, 0, 115, 2, 0x08 /* Private */,
|
||||
4, 0, 116, 2, 0x08 /* Private */,
|
||||
5, 0, 117, 2, 0x08 /* Private */,
|
||||
6, 0, 118, 2, 0x08 /* Private */,
|
||||
7, 0, 119, 2, 0x08 /* Private */,
|
||||
8, 0, 120, 2, 0x08 /* Private */,
|
||||
9, 0, 121, 2, 0x08 /* Private */,
|
||||
10, 0, 122, 2, 0x08 /* Private */,
|
||||
11, 0, 123, 2, 0x08 /* Private */,
|
||||
12, 0, 124, 2, 0x08 /* Private */,
|
||||
13, 0, 125, 2, 0x08 /* Private */,
|
||||
14, 0, 126, 2, 0x08 /* Private */,
|
||||
15, 0, 127, 2, 0x08 /* Private */,
|
||||
16, 0, 128, 2, 0x08 /* Private */,
|
||||
17, 0, 129, 2, 0x08 /* Private */,
|
||||
18, 0, 130, 2, 0x08 /* Private */,
|
||||
19, 0, 131, 2, 0x08 /* Private */,
|
||||
20, 0, 132, 2, 0x08 /* Private */,
|
||||
21, 0, 133, 2, 0x08 /* Private */,
|
||||
|
||||
// slots: parameters
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
QMetaType::Void,
|
||||
|
||||
0 // eod
|
||||
};
|
||||
|
||||
void Widget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||
{
|
||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||
Widget *_t = static_cast<Widget *>(_o);
|
||||
Q_UNUSED(_t)
|
||||
switch (_id) {
|
||||
case 0: _t->on_btnConn_clicked(); break;
|
||||
case 1: _t->on_btnReset_clicked(); break;
|
||||
case 2: _t->on_btnRefresh_clicked(); break;
|
||||
case 3: _t->on_configButton_clicked(); break;
|
||||
case 4: _t->on_defaultButton_clicked(); break;
|
||||
case 5: _t->on_fileButton_clicked(); break;
|
||||
case 6: _t->on_updateButton_clicked(); break;
|
||||
case 7: _t->on_configSetButton_clicked(); break;
|
||||
case 8: _t->on_configGetButton_clicked(); break;
|
||||
case 9: _t->on_csgConfigGetButton_clicked(); break;
|
||||
case 10: _t->on_csgConfigSetButton_clicked(); break;
|
||||
case 11: _t->on_dataRefreshButton_clicked(); break;
|
||||
case 12: _t->on_dataRefreshAutoButton_clicked(); break;
|
||||
case 13: _t->on_stateRefreshButton_clicked(); break;
|
||||
case 14: _t->on_freRefreshButton_clicked(); break;
|
||||
case 15: _t->on_waveColButton_clicked(); break;
|
||||
case 16: _t->on_waveRefreshButton_clicked(); break;
|
||||
case 17: _t->on_waveCalButton_clicked(); break;
|
||||
case 18: _t->on_historyDataButton_clicked(); break;
|
||||
case 19: _t->on_stateLogButton_clicked(); break;
|
||||
default: ;
|
||||
}
|
||||
}
|
||||
Q_UNUSED(_a);
|
||||
}
|
||||
|
||||
QT_INIT_METAOBJECT const QMetaObject Widget::staticMetaObject = {
|
||||
{ &QWidget::staticMetaObject, qt_meta_stringdata_Widget.data,
|
||||
qt_meta_data_Widget, qt_static_metacall, nullptr, nullptr}
|
||||
};
|
||||
|
||||
|
||||
const QMetaObject *Widget::metaObject() const
|
||||
{
|
||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
||||
}
|
||||
|
||||
void *Widget::qt_metacast(const char *_clname)
|
||||
{
|
||||
if (!_clname) return nullptr;
|
||||
if (!strcmp(_clname, qt_meta_stringdata_Widget.stringdata0))
|
||||
return static_cast<void*>(this);
|
||||
return QWidget::qt_metacast(_clname);
|
||||
}
|
||||
|
||||
int Widget::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
||||
{
|
||||
_id = QWidget::qt_metacall(_c, _id, _a);
|
||||
if (_id < 0)
|
||||
return _id;
|
||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||
if (_id < 20)
|
||||
qt_static_metacall(this, _c, _id, _a);
|
||||
_id -= 20;
|
||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
||||
if (_id < 20)
|
||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
||||
_id -= 20;
|
||||
}
|
||||
return _id;
|
||||
}
|
||||
QT_WARNING_POP
|
||||
QT_END_MOC_NAMESPACE
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue