Files
LPCClocklessAnalyzer/readme.md

36 lines
636 B
Markdown
Raw Permalink Normal View History

2023-10-12 19:22:42 +02:00
# LPCClocklessAnalyzer
2023-10-12 19:22:42 +02:00
This is an analyzer for LPC TPM traffic that does not require the clock signal.
2023-10-12 19:22:42 +02:00
## Building this Analyzer
### Windows
```bat
mkdir build
cd build
cmake .. -A x64
cmake --build .
:: built analyzer will be located at SampleAnalyzer\build\Analyzers\Debug\SimpleSerialAnalyzer.dll
```
2016-10-03 16:55:01 -07:00
### MacOS
2016-10-03 16:55:01 -07:00
```bash
mkdir build
cd build
cmake ..
cmake --build .
2022-02-16 19:08:32 -08:00
# built analyzer will be located at SampleAnalyzer/build/Analyzers/libSimpleSerialAnalyzer.so
```
2016-10-03 16:55:01 -07:00
### Linux
```bash
mkdir build
cd build
cmake ..
cmake --build .
2022-02-16 19:08:32 -08:00
# built analyzer will be located at SampleAnalyzer/build/Analyzers/libSimpleSerialAnalyzer.so
```