Protocol Analyzer SDK

Instructions for loading existing custom analyzers into the Logic software can be found here: Import Custom Low Level Analyzer

The Saleae Protocol Analyzer SDK lets you make your own custom protocol analyzers. The framework is very flexible. You can do everything we can do (we use the same SDK). You'll be creating a shared library (.dll for Windows, .so for Linux, or .dylib for MacOS) that will be loaded by the Logic software as a plugin.

While there are many advantages to providing the SDK in this format, implementation of a custom protocol will probably take an experienced C++ developer at least a full day, and possibly up to a week, to complete. You will want to have had considerable programming experience, probably significant C++ experience, before taking it on.

That said, you can get away with implementing only a small part of the full capability of the analyzer. For example, you could have only one setting (the input channel(s) to use), and you could skip creating simulated data to test against, not bothering to provide for data export or tabular display.

Documentation and Getting Started

In most cases, you will want to start out with our fully featured, and maximally simple, SampleAnalyzer. In this Github repository, we provide two helpful documents.

  1. Readme - This document will walk you through how to modify the SampleAnalyzer to suit your needs, including steps to rename, setup, build, and debug your analyzer.

  2. Analyzer_API - This is the documentation for the Saleae C++ Analyzer API.

As an alternative, you may also get started with any of our pre-installed protocol analyzers or one of many community shared protocol analyzers. Source code for both are provided in a section below in this support article.

Latest Analyzer SDK Release

Our SampleAnalyzer automatically fetches the latest library files located on our Analyzer SDK GitHub repository located below.

Installing your Custom Analyzers

pageImport Custom Low Level Analyzer

Pre-Installed Analyzers Source Code

Community Shared Analyzers

pageCommunity Shared Analyzers

Legacy 1.1.14 Release

Last updated