Practical Example of J-Scope Virtual Oscilloscope with Jlink
Requirement Imagine you are facing a scenario where the MCU code has the following snippet, and you need to see the values of the variables in real-time sin_o cos_o automatically plotted, which is essentially a virtual oscilloscope (what a clever name)! #include <math.h> float x = 0; double sin_o = 0; double cos_o = 0; … Read more