Go to file
Marcus10110 cffef197b1 added readme 2016-10-03 16:55:01 -07:00
AnalyzerSDK@31af8aa157 added Simple Serial Analyzer source and VS project. 2016-10-03 14:08:53 -07:00
Visual Studio added Simple Serial Analyzer source and VS project. 2016-10-03 14:08:53 -07:00
source added Simple Serial Analyzer source and VS project. 2016-10-03 14:08:53 -07:00
.gitignore updated and added rename analyzer script, tested on Windows - works. 2016-10-03 15:04:42 -07:00
.gitmodules added Simple Serial Analyzer source and VS project. 2016-10-03 14:08:53 -07:00
build_analyzer.py updated the build_analyzer.py script on OSX, so that it now uses the AnalyzerSDK directory, and no longer assumes the AnalyzerSDK files are an extra directory above. 2016-10-03 15:21:50 -07:00
readme.md added readme 2016-10-03 16:55:01 -07:00
rename_analyzer.py updated and added rename analyzer script, tested on Windows - works. 2016-10-03 15:04:42 -07:00

readme.md

Saleae Analyzer SDK Sample Analyzer

The Saleae Analyzer SDK is used to create custom plugins for the Saleae Logic software. These plugins are used to decode protocol data from captured waveforms.

The libraries required to build a custom analyzer are stored in another git repository, located here: https://github.com/saleae/AnalyzerSDK

This repository should be used to create new analyzers for the Saleae software.

First, fork, clone or download this repository. Forking is recommended if you plan to use version control or share your custom analyzer publicly.

Note - This repository contains a submodule. Be sure to include submodules when cloning. If you download the repository from Github, the submodules are not included. In that case you will also need to download the AnalyzerSDK repository linked above and place the AnalyzerSDK folder inside of the SampleAnalyzer folder.

Once downloaded, first run the script rename_analyzer.py. This script is used to rename the sample analyzer automatically. Specifically, it changes the class names in the source code, it changes the text name that will be displayed once the custom analyzer has been loaded into the Saleae Logic software, and it updates the visual studio project.

There are two names you need to provide to rename_analyzer. The first is the class name. For instance, if you are developing a SPI analyzer, the class names would be SPIAnalyzer, SPIAnalyzerResults, SPIAnalyzerSettings, etc. The file names would be similar, like SPIAnalyzer.cpp, etc.

All analyzer classes should end with "Analyzer," so the rename script will add that for you. In the first prompt after starting the script, enter "SPI". The analyzer suffix will be added for you. This needs to be a valid C++ class name - no spaces, it can't start with a number, etc.

Second, the script will prompt you for the display name. This will appear in the software in the list of analyzers after the plugin has loaded. This string can have spaces, since it will always be treated as a string, and not as the name of a class.

After that, the script will complete the renaming process and exit.

python rename_analyzer.py
SPI
Mark's SPI Analyzer

To build on Windows, open the visual studio project in the Visual Studio folder, and build. The Visual Studio solution has configurations for 32 bit and 64 bit builds. You will likely need to switch the configuration to 64 bit and build that in order to get the analyzer to load in the Windows software.

To build on Linux or OSX, run the build_analyzer.py script. The compiled libraries can be found in the newly created debug and release folders.

python build_analyzer.py