Arduino
An Arduino Logic Analyzer for the ESP32
Together with Pulseview, the ESP32 can be turned into a Logic Analyzer. I demonstrated how to build a simple SUMP logic analyzer with [my ‘logic-analyzer’ library] in my last blog, (https://github.com/pschatzmann/logic-analyzer). Of cause the described sketch is also working for the ESP32. But we can do better! Here is an improved implementation which uses both cores: #include “Arduino.h” #include “logic_analyzer.h” #include “esp_int_wdt.h” #ifndef LED_BUILTIN #define LED_BUILTIN 13 // pin number is specific to your esp32 Read more…