├── .gitignore ├── AnalyzerSDKConfig.cmake ├── include ├── Analyzer.h ├── AnalyzerChannelData.h ├── AnalyzerHelpers.h ├── AnalyzerResults.h ├── AnalyzerSettingInterface.h ├── AnalyzerSettings.h ├── AnalyzerTypes.h ├── LogicPublicTypes.h └── SimulationChannelDescriptor.h ├── lib_arm64 └── libAnalyzer.dylib ├── lib_x86_64 ├── Analyzer.dll ├── Analyzer.lib ├── libAnalyzer.dylib ├── libAnalyzer.so └── readme.txt └── testlib ├── AnalyzerStubs.cpp ├── CMakeLists.txt ├── HelperStubs.cpp ├── MockChannelData.cpp ├── MockChannelData.h ├── MockResults.cpp ├── MockResults.h ├── MockSettings.h ├── MockSimulatedChannelDescriptor.cpp ├── MockSimulatedChannelDescriptor.h ├── SettingsStubs.cpp ├── StreamHelpers.cpp ├── StreamHelpers.h ├── TestAnalyzerData.h ├── TestHarnessVerification.cpp ├── TestInstance.cpp ├── TestInstance.h ├── TestMacros.h └── TrivialAnalyzer.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /AnalyzerSDKConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/AnalyzerSDKConfig.cmake -------------------------------------------------------------------------------- /include/Analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/Analyzer.h -------------------------------------------------------------------------------- /include/AnalyzerChannelData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/AnalyzerChannelData.h -------------------------------------------------------------------------------- /include/AnalyzerHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/AnalyzerHelpers.h -------------------------------------------------------------------------------- /include/AnalyzerResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/AnalyzerResults.h -------------------------------------------------------------------------------- /include/AnalyzerSettingInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/AnalyzerSettingInterface.h -------------------------------------------------------------------------------- /include/AnalyzerSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/AnalyzerSettings.h -------------------------------------------------------------------------------- /include/AnalyzerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/AnalyzerTypes.h -------------------------------------------------------------------------------- /include/LogicPublicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/LogicPublicTypes.h -------------------------------------------------------------------------------- /include/SimulationChannelDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/include/SimulationChannelDescriptor.h -------------------------------------------------------------------------------- /lib_arm64/libAnalyzer.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/lib_arm64/libAnalyzer.dylib -------------------------------------------------------------------------------- /lib_x86_64/Analyzer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/lib_x86_64/Analyzer.dll -------------------------------------------------------------------------------- /lib_x86_64/Analyzer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/lib_x86_64/Analyzer.lib -------------------------------------------------------------------------------- /lib_x86_64/libAnalyzer.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/lib_x86_64/libAnalyzer.dylib -------------------------------------------------------------------------------- /lib_x86_64/libAnalyzer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/lib_x86_64/libAnalyzer.so -------------------------------------------------------------------------------- /lib_x86_64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/lib_x86_64/readme.txt -------------------------------------------------------------------------------- /testlib/AnalyzerStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/AnalyzerStubs.cpp -------------------------------------------------------------------------------- /testlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/CMakeLists.txt -------------------------------------------------------------------------------- /testlib/HelperStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/HelperStubs.cpp -------------------------------------------------------------------------------- /testlib/MockChannelData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/MockChannelData.cpp -------------------------------------------------------------------------------- /testlib/MockChannelData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/MockChannelData.h -------------------------------------------------------------------------------- /testlib/MockResults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/MockResults.cpp -------------------------------------------------------------------------------- /testlib/MockResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/MockResults.h -------------------------------------------------------------------------------- /testlib/MockSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/MockSettings.h -------------------------------------------------------------------------------- /testlib/MockSimulatedChannelDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/MockSimulatedChannelDescriptor.cpp -------------------------------------------------------------------------------- /testlib/MockSimulatedChannelDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/MockSimulatedChannelDescriptor.h -------------------------------------------------------------------------------- /testlib/SettingsStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/SettingsStubs.cpp -------------------------------------------------------------------------------- /testlib/StreamHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/StreamHelpers.cpp -------------------------------------------------------------------------------- /testlib/StreamHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/StreamHelpers.h -------------------------------------------------------------------------------- /testlib/TestAnalyzerData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/TestAnalyzerData.h -------------------------------------------------------------------------------- /testlib/TestHarnessVerification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/TestHarnessVerification.cpp -------------------------------------------------------------------------------- /testlib/TestInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/TestInstance.cpp -------------------------------------------------------------------------------- /testlib/TestInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/TestInstance.h -------------------------------------------------------------------------------- /testlib/TestMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/TestMacros.h -------------------------------------------------------------------------------- /testlib/TrivialAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saleae/AnalyzerSDK/HEAD/testlib/TrivialAnalyzer.cpp --------------------------------------------------------------------------------