2023-10-12 19:22:42 +02:00
|
|
|
# LPCClocklessAnalyzer
|
2022-02-16 20:42:21 -08:00
|
|
|
|
2023-10-12 19:22:42 +02:00
|
|
|
This is an analyzer for LPC TPM traffic that does not require the clock signal.
|
2022-02-16 20:42:21 -08:00
|
|
|
|
2023-10-12 19:22:42 +02:00
|
|
|
## Building this Analyzer
|
2022-02-16 17:07:05 -08:00
|
|
|
|
|
|
|
|
### 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
|
|
|
|
2022-02-16 17:07:05 -08:00
|
|
|
### MacOS
|
2016-10-03 16:55:01 -07:00
|
|
|
|
2022-02-16 17:07:05 -08: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
|
2022-02-16 17:07:05 -08:00
|
|
|
```
|
2016-10-03 16:55:01 -07:00
|
|
|
|
2022-02-16 17:07:05 -08:00
|
|
|
### Linux
|
2016-11-14 14:05:30 -08:00
|
|
|
|
2022-02-16 17:07:05 -08: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
|
2022-02-16 17:07:05 -08:00
|
|
|
```
|