From 3388a6e94421f1791a8c815e80c99466a7909736 Mon Sep 17 00:00:00 2001 From: Marcus10110 Date: Wed, 16 Feb 2022 19:08:32 -0800 Subject: [PATCH] updated readme. --- readme.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index b38c71f..b7b51c2 100644 --- a/readme.md +++ b/readme.md @@ -3,7 +3,7 @@ The Saleae Analyzer SDK is used to create custom plugins for the Saleae Logic so To build your own protocol decoder plugin, first fork, clone, or download this repository. -Then, make sure you have the required software installed for development. See the [Prerequisites](#-Prerequisites) section below for details. +Then, make sure you have the required software installed for development. See the [Prerequisites](#Prerequisites) section below for details. ## Renaming your Analyzer @@ -22,7 +22,11 @@ After that, the script will complete the renaming process and exit. SPI Mark's SPI Analyzer -Once renamed, you're ready to build your analyzer! See the [Building your Analyzer](##-Building-your-Analyzer) section below. +Once renamed, you're ready to build your analyzer! See the [Building your Analyzer](#Building-your-Analyzer) section below. + +## Cloud Building & Publishing + +This example repository includes support for GitHub actions, which is a continuous integration service from GitHub. ## Prerequisites @@ -98,6 +102,7 @@ mkdir build cd build cmake .. cmake --build . +# built analyzer will be located at SampleAnalyzer/build/Analyzers/libSimpleSerialAnalyzer.so ``` ### Linux @@ -107,4 +112,5 @@ mkdir build cd build cmake .. cmake --build . +# built analyzer will be located at SampleAnalyzer/build/Analyzers/libSimpleSerialAnalyzer.so ```